Skip to content

List webhook deliveries

GET
/v1/webhook-deliveries
curl --request GET \
--url 'https://api.vocapable.com/v1/webhook-deliveries?limit=50' \
--header 'Authorization: Bearer <token>'

The inspectable delivery ledger, newest first.

Filterable on event_id, endpoint_id, status, and created_at ranges - the documented recovery path is ?event_id=… plus re-fetching the underlying resource.

limit
Limit
integer
default: 50 >= 1 <= 200
cursor
Any of:
string
created_at
Any of:
string

Filter on created_at. Comma-separated values are OR.

created_at.gte
Any of:
string

Filter on created_at with the gte operator.

created_at.lte
Any of:
string

Filter on created_at with the lte operator.

created_at.gt
Any of:
string

Filter on created_at with the gt operator.

created_at.lt
Any of:
string

Filter on created_at with the lt operator.

created_at.in
Any of:
string

Filter on created_at with the in operator.

endpoint_id
Any of:
string

Filter on endpoint_id. Comma-separated values are OR.

endpoint_id.gte
Any of:
string

Filter on endpoint_id with the gte operator.

endpoint_id.lte
Any of:
string

Filter on endpoint_id with the lte operator.

endpoint_id.gt
Any of:
string

Filter on endpoint_id with the gt operator.

endpoint_id.lt
Any of:
string

Filter on endpoint_id with the lt operator.

endpoint_id.in
Any of:
string

Filter on endpoint_id with the in operator.

event_id
Any of:
string

Filter on event_id. Comma-separated values are OR.

event_id.gte
Any of:
string

Filter on event_id with the gte operator.

event_id.lte
Any of:
string

Filter on event_id with the lte operator.

event_id.gt
Any of:
string

Filter on event_id with the gt operator.

event_id.lt
Any of:
string

Filter on event_id with the lt operator.

event_id.in
Any of:
string

Filter on event_id with the in operator.

status
Any of:
string

Filter on status. Comma-separated values are OR.

status.gte
Any of:
string

Filter on status with the gte operator.

status.lte
Any of:
string

Filter on status with the lte operator.

status.gt
Any of:
string

Filter on status with the gt operator.

status.lt
Any of:
string

Filter on status with the lt operator.

status.in
Any of:
string

Filter on status with the in operator.

Successful Response

Media typeapplication/json
CursorPage[WebhookDelivery]
object
data
required
Data
Array<object>
WebhookDelivery

One ledger row: a single (endpoint, event) pair, retried in place.

object
id
required
Id
string
endpoint_id
required
Endpoint Id
string
event_id
required
Event Id
string
attempt
required
Attempt
integer
status
required
Status
string
response_code
required
Any of:
integer
next_retry_at
required
Any of:
string format: date-time
delivered_at
required
Any of:
string format: date-time
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
next_cursor
Any of:
string
has_more
Has More
boolean
Example
{
"has_more": false
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}