API Reference

List delivery attempts

Requires subscriptions:manage and lists recent delivery attempts for a webhook subscription owned by the authenticated principal. This read-only operation accepts a limit from 1 to 100.

GET/v1/subscriptions/{id}/deliveries

Requires subscriptions:manage and lists recent delivery attempts for a webhook subscription owned by the authenticated principal. This read-only operation accepts a limit from 1 to 100.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Subscription ID.

Query Parameters

limit?integer

Maximum records to return. Must be between 1 and 100.

Range1 <= value <= 100
Default50

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/subscriptions/string/deliveries"
{  "deliveries": [    {      "attempt": 0,      "dispatchedAt": "string",      "eventId": "string",      "id": "string",      "lastError": "string",      "nextAttemptAt": "string",      "responseCode": 0,      "status": "string",      "subscriptionId": "string"    }  ]}