v1

latestOpenAPI 3.0.12026-07-141671231.8 MB
Hidden

List webhook subscriptions

Returns all webhook subscriptions for the authenticated token, paginated. Note that the secret is not included in the response.

get/api/external/v2/webhook_subscriptions

Query parameters

cursorstring

Opaque cursor from a previous response to retrieve the next page

limitinteger

Number of items to return per page

Response

A paginated list of webhook subscriptions

has_moreboolean required

Indicates whether additional results are available

next_cursorstring nullable required

Cursor to retrieve the next set of results

Example response

{
  "items": [
    {
      "id": 12345,
      "callback_url": "https://example.com/webhooks",
      "events": [
        "dms_file.created",
        "customer_invoice.e_invoicing_status_updated"
      ],
      "enabled": true,
      "disabled_at": "2023-08-07T14:23:12.000Z",
      "last_failure_status": 500,
      "last_failure_at": "2023-08-07T14:23:12.000Z",
      "consecutive_failures": 3,
      "created_at": "2023-08-07T14:23:12.000Z",
      "updated_at": "2023-08-07T14:23:12.000Z"
    }
  ]
}