List webhook endpoints

GET/webhooks

Returns the webhook endpoints of the current account, paginated by cursor. The collection can be filtered by status and event type. Signing secrets are never included.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Query Parameters

limit?integer
Range1 <= value <= 200
cursor?string
sort?string

Value in

  • "created_at"
  • "-created_at"
status?string

Value in

  • "active"
  • "inactive"
event_type?string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/webhooks"
{  "data": [    {      "created_at": "2019-08-24T14:15:22Z",      "description": "string",      "event_types": [        "string"      ],      "health": {        "consecutive_failures": 0,        "dead_24h": 0,        "delivered_24h": 0,        "failed_24h": 0,        "last_failure_at": "2019-08-24T14:15:22Z",        "last_success_at": "2019-08-24T14:15:22Z",        "pending": 0      },      "id": "string",      "max_per_second": 0,      "object": "webhook",      "payload_version": 0,      "resource_filters": {},      "revision": 0,      "secret": "string",      "status": "active",      "timeout_ms": 0,      "updated_at": "2019-08-24T14:15:22Z",      "url": "http://example.com"    }  ],  "page": {    "limit": 1,    "next_cursor": "string",    "prev_cursor": "string"  }}