Retrieve a webhook endpoint

GET/webhooks/{webhook_id}

Retrieves a webhook endpoint, including its current revision and a health summary for the last 24 hours. The signing secret is never included.

The response includes an ETag representing the current revision. Send this value in the If-Match header when updating the endpoint to avoid overwriting a newer version.

AuthorizationBearer <token>

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

In: header

Path Parameters

webhook_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/webhooks/string"
{  "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"  }}