APIWebhooks

List webhook deliveries

List deliveries for a webhook, newest first, attempts embedded.

GET/webhooks/{webhook_id}/deliveries

List deliveries for a webhook, newest first, attempts embedded.

Path Parameters

webhook_id*string
Formatuuid

Query Parameters

offset?integer

Number of items to skip before returning results.

Formatint32
Range0 <= value
Default0
limit?integer

Maximum number of items to return per page.

Formatint32
Range0 <= value <= 20
Default10

Response Body

application/json

application/json

curl -X GET "https://example.com/webhooks/497f6eca-6276-4993-bfeb-53cbbbba6f08/deliveries"
{  "items": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "webhook_id": "a47606a1-5b39-4a81-9480-c2cb738ff675",      "status": "pending",      "event_count": 0,      "attempt_count": 0,      "attempts": [        {          "at": "2019-08-24T14:15:22Z",          "status_code": 0,          "error": "string",          "duration_ms": 0,          "response_snippet": "string"        }      ],      "next_retry_at": "2019-08-24T14:15:22Z",      "retryable": true,      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "meta": {    "total": 0,    "offset": 0,    "limit": 0  }}