List recent webhook deliveries
GET
/api/webhooks/{id}/deliveries
Returns the last 50 delivery attempts for debugging.
Authorizations
bearerAuth
API token created via POST /api/tokens or the db:create-token CLI command
Type
HTTP (bearer)
Responses
Delivery history
application/json
JSON
{
"data": {
"deliveries": [
{
"id": 0,
"webhook_id": 0,
"event": "string",
"payload": "string",
"status_code": 0,
"error": "string",
"attempt": 0,
"created_at": "string"
}
]
}
}
GET
/api/webhooks/{id}/deliveries
