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.
List Webhook Subscriptions Response
Name | Type | Tags | Description |
---|---|---|---|
errors |
List Error |
Optional | Information on errors encountered during the request. |
subscriptions |
List Webhook Subscription |
Optional | The requested list of Subscriptions. |
cursor |
str |
Optional | The pagination cursor to be used in a subsequent request. If empty, this is the final response. For more information, see Pagination. |
{
"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"
}