APIWebhooks

List webhooks

List webhooks. Signing secrets, header values, and variable values are never returned.

GET/webhooks

List webhooks. Signing secrets, header values, and variable values are never returned.

Query Parameters

offset?integer

Number of items to skip before returning results.

Formatint32
Range0 <= value
Default0
limit?integer

Maximum number of items to return per page.

Formatint32
Range0 <= value <= 20
Default10

Response Body

application/json

application/json

curl -X GET "https://example.com/webhooks"
{  "items": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "url": "string",      "events": [        "string"      ],      "status": "active",      "disabled_reason": "circuit_breaker",      "failing_since": "2019-08-24T14:15:22Z",      "last_delivery_status": "pending",      "last_delivery_at": "2019-08-24T14:15:22Z",      "format": "single",      "max_events": 0,      "has_custom_headers": true,      "header_keys": [        "string"      ],      "template": "string",      "condition": "string",      "destination": "string",      "var_keys": [        "string"      ],      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "meta": {    "total": 0,    "offset": 0,    "limit": 0  }}