Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Request
The webhook ID to list deliveries for.
Example request
curl "https://encrata.com/api/webhooks/deliveries?webhook_id=360cb300-d885-4c18-af2c-d259f936bb38" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
Returns an array of delivery objects (up to 50 most recent).
Unique delivery identifier (UUID).
The webhook this delivery belongs to.
The event that triggered this delivery.
The JSON payload that was sent.
Delivery status: pending, success, or failed.
Number of delivery attempts made.
HTTP status code returned by your endpoint (if available).
Response body from your endpoint (if available).
ISO 8601 timestamp of the last delivery attempt.
ISO 8601 timestamp when the delivery was created.
Example response
[
{
"id": "del_abc123",
"webhook_id": "360cb300-d885-4c18-af2c-d259f936bb38",
"event_type": "lookup.completed",
"payload": {
"event": "lookup.completed",
"data": {"email": "satya@microsoft.com"},
"created_at": "2026-05-02T12:00:00Z"
},
"status": "success",
"attempts": 1,
"response_status": 200,
"response_body": "OK",
"last_attempt_at": "2026-05-02T12:00:01Z",
"created_at": "2026-05-02T12:00:00Z"
}
]