Webhook endpoints
List Webhook Endpoints
List your webhook endpoints.
Authorization
ApiKeyAuth x-api-key<token>
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/webhook-endpoints"{ "endpoints": [ { "id": "string", "url": "string", "eventTypes": [ "document.uploaded" ], "createdAt": "2019-08-24T14:15:22Z" } ]}Delete Webhook Endpoint DELETE
Delete a webhook endpoint. Events are no longer delivered to it.
Retry Failed Deliveries POST
Re-queue every failed delivery of the endpoint for the next automatic retry sweep (runs every few minutes). Retried events keep their original `id` and payload, so consumers must deduplicate on the event `id`.