Webhooks
GET
/webhooks/deliveries

Every event delivery across all of the workspace's endpoints, newest first, with the full payload on each row. Filter by event, status or endpoint. Rows are dropped 7 days after creation, so poll or export to keep a permanent record.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings → API & Webhooks.

In: header

Query Parameters

event?string

Restrict to one event type (e.g. message.received).

status?string

Value in

  • "pending"
  • "delivered"
  • "failed"
webhookId?string

Restrict to one endpoint.

limit?integer

Page size, 1–100.

Range1 <= value <= 100
Default50
offset?integer

Number of records to skip.

Range0 <= value
Default0

Response Body

application/json

application/json

curl -X GET "https://example.com/webhooks/deliveries"
{  "data": [    {      "id": "string",      "webhookId": "string",      "event": "string",      "url": "string",      "status": "pending",      "attempts": 0,      "responseStatus": 0,      "lastError": "string",      "nextAttemptAt": "2019-08-24T14:15:22Z",      "createdAt": "2019-08-24T14:15:22Z",      "deliveredAt": "2019-08-24T14:15:22Z",      "payload": {}    }  ],  "paging": {    "limit": 0,    "offset": 0,    "total": 0  }}