Webhook endpoints
List webhook endpoint deliveries
List the delivery attempts made to one webhook endpoint, newest first.
GET/v1/webhook_endpoints/{endpoint_id}/deliveries
Parameters
| Parameter | Description |
|---|---|
| endpoint_idstring · pathrequired | No description in the spec. |
| limitinteger · queryoptional | Defaults to 10. Between 1 and 100. |
| starting_afterstring | null · queryoptional | At most 128 characters. |
Cursor-paginated. limit caps a page and starting_after takes the last id you
saw.
Returns
Returns a page of WebhookDeliveryResponse objects. data holds the page and has_more says whether another one exists. Page forward by passing the last id of the page as starting_after; a short page is not the end of the list.
Errors
| Status | Cause |
|---|---|
| 401 | Missing or invalid API key. |
| 403 | Key is missing the webhook_endpoints:read scope. |
| 404 | No such object, or it belongs to the other mode. |
| 422 | Validation Error |
| 429 | Rate limited. Back off and retry. |
Other webhook endpoints operations
- List webhook endpoints GET /v1/webhook_endpoints
- Create a webhook endpoint POST /v1/webhook_endpoints
- Delete webhook endpoint DELETE /v1/webhook_endpoints/{endpoint_id}
- Get webhook endpoint GET /v1/webhook_endpoints/{endpoint_id}
- Update webhook endpoint POST /v1/webhook_endpoints/{endpoint_id}
- Get webhook delivery GET /v1/webhook_endpoints/{endpoint_id}/deliveries/{delivery_id}
- Redeliver webhook delivery POST /v1/webhook_endpoints/{endpoint_id}/deliveries/{delivery_id}/redeliver
- Rotate webhook endpoint secret POST /v1/webhook_endpoints/{endpoint_id}/rotate_secret
- List event types GET /v1/webhook_endpoints/event_types
BillKit