Class: PlatformAPI::AddonWebhookDelivery

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Represents the delivery of a webhook notification, including its current status.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ AddonWebhookDelivery

Returns a new instance of AddonWebhookDelivery.



1008
1009
1010
# File 'lib/platform-api/client.rb', line 1008

def initialize(client)
  @client = client
end

Instance Method Details

#info(addon_id_or_addon_name, app_webhook_delivery_id) ⇒ Object

Returns the info for an existing delivery. Can only be accessed by the add-on partner providing this add-on.

Parameters:

  • addon_id_or_addon_name:

    unique identifier of add-on or globally unique name of the add-on

  • app_webhook_delivery_id:

    the delivery’s unique identifier



1016
1017
1018
# File 'lib/platform-api/client.rb', line 1016

def info(addon_id_or_addon_name, app_webhook_delivery_id)
  @client.addon_webhook_delivery.info(addon_id_or_addon_name, app_webhook_delivery_id)
end

#list(addon_id_or_addon_name) ⇒ Object

Lists existing deliveries for an add-on. Can only be accessed by the add-on partner providing this add-on.

Parameters:

  • addon_id_or_addon_name:

    unique identifier of add-on or globally unique name of the add-on



1023
1024
1025
# File 'lib/platform-api/client.rb', line 1023

def list(addon_id_or_addon_name)
  @client.addon_webhook_delivery.list(addon_id_or_addon_name)
end