Webhook History
Use these endpoints to inspect webhook delivery attempts made by the platform.Authentication & scope
- Header:
X-API-Key: YOUR_API_KEY - Required scope:
webhooks:read - Use API Reference for interactive Try-it on both webhook history endpoints.
GET /v1/webhooks/history
Lists paginated webhook delivery history.
Bash
Node
Python
200 OK
Common status codes
200success403missingwebhooks:read500server error
GET /v1/webhooks/history/{id}
Fetches one webhook delivery log by id.
Bash
Node
Python
Common status codes
200success403missingwebhooks:read404history item not found500server error
Troubleshooting flow
- Query
/v1/webhooks/historyfor failed responses. - Open one record with
/v1/webhooks/history/{id}. - Inspect
request_body,response_code, andresponse_body. - Fix receiver and re-run your originating flow.