Skip to main content
GET
/
api
/
webhookSubscriptions.deliveries
Get webhook delivery history
curl --request GET \
  --url https://{notifuseDomain}/api/webhookSubscriptions.deliveries \
  --header 'Authorization: Bearer <token>'
{
"deliveries": [
{
"id": "whdel_x1y2z3",
"subscription_id": "whsub_a1b2c3d4e5f6",
"event_type": "contact.created",
"payload": {},
"status": "delivered",
"attempts": 1,
"max_attempts": 10,
"next_attempt_at": "2024-01-15T10:35:00Z",
"last_attempt_at": "2024-01-15T10:30:00Z",
"delivered_at": "2024-01-15T10:30:00Z",
"last_response_status": 200,
"last_response_body": "{\"received\": true}",
"last_error": null,
"created_at": "2024-01-15T10:30:00Z"
}
],
"total": 150,
"limit": 20,
"offset": 0
}

Authorizations

Authorization
string
header
required

API token for authentication

Query Parameters

workspace_id
string
required

The ID of the workspace

subscription_id
string
required

The ID of the webhook subscription

limit
integer
default:20

Number of deliveries to return (1-100)

Required range: 1 <= x <= 100
offset
integer
default:0

Offset for pagination

Required range: x >= 0

Response

List of webhook deliveries

deliveries
object[]
total
integer

Total number of deliveries

Example:

150

limit
integer

Number of deliveries per page

Example:

20

offset
integer

Offset for pagination

Example:

0