Skip to main content

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.

200 OK

Common status codes

  • 200 success
  • 403 missing webhooks:read
  • 500 server error

GET /v1/webhooks/history/{id}

Fetches one webhook delivery log by id.

Common status codes

  • 200 success
  • 403 missing webhooks:read
  • 404 history item not found
  • 500 server error

Troubleshooting flow

  1. Query /v1/webhooks/history for failed responses.
  2. Open one record with /v1/webhooks/history/{id}.
  3. Inspect request_body, response_code, and response_body.
  4. Fix receiver and re-run your originating flow.