Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.66 KB

list-webhook-subscriptions-response.md

File metadata and controls

52 lines (42 loc) · 1.66 KB

List Webhook Subscriptions Response

Defines the fields that are included in the response body of a request to the ListWebhookSubscriptions endpoint.

Note: if there are errors processing the request, the subscriptions field will not be present.

Structure

List Webhook Subscriptions Response

Fields

Name Type Tags Description
errors Array<Error Hash> Optional Information on errors encountered during the request.
subscriptions Array<Webhook Subscription Hash> Optional The requested list of Subscriptions.
cursor String Optional The pagination cursor to be used in a subsequent request. If empty,
this is the final response.

For more information, see Pagination.

Example (as JSON)

{
  "subscriptions": [
    {
      "api_version": "2021-12-15",
      "created_at": "2022-01-10 23:29:48 +0000 UTC",
      "enabled": true,
      "event_types": [
        "payment.created",
        "payment.updated"
      ],
      "id": "wbhk_b35f6b3145074cf9ad513610786c19d5",
      "name": "Example Webhook Subscription",
      "notification_url": "https://example-webhook-url.com",
      "updated_at": "2022-01-10 23:29:48 +0000 UTC"
    }
  ],
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    }
  ],
  "cursor": "cursor6"
}