Skip to main content

Get all Events for Webhook

GET 

/webhook/:guid/event

deprecated

Returns all the WebhookEvents attached to the Webhook.

Request

Path Parameters

    guid uuidrequired

    The guid of the Webhook.

Responses

The attached WebhookEvents of Webhook found.

Schema

  • Array [

  • guid uuid

    The guid of the WebhookEvent.

    webhook_id uuid

    The guid of the Webhook the WebhookEvent belongs to. Note, the WebhookEvent will be created due to a single trigger, the Webhook specifies the action to perform.

    event string

    Possible values: [order-updated, order-pending, order-paid, order-cancelled]

    The trigger that will invoke the Webhook.

    url url

    The url to which to make POST request(s) after a trigger of the event. Only if a request fails, there can be a retry.

    data string

    Data that is posted along with the event to the url.

    tries integer

    Default value: 0

    How many times have been tried communicating the WebhookEvent to the url.

    communicated boolean

    Whether we received a HTTP 200 code on the response to any of the requests.

    created_at ISO 8601

    The time it was created.

    updated_at ISO 8601

    The time it was last updated.

  • ]

Loading...