Skip to main content
GET
/
v1
/
apps
/
{app_id}
/
webhooks
/
{id}
/
deliveries
Get webhook deliveries
curl --request GET \
  --url https://{defaultHost}/v1/apps/{app_id}/webhooks/{id}/deliveries \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Authorization: <api-key>'
{
  "deliveries": [
    {
      "id": "<string>",
      "webhook_endpoint_id": "<string>",
      "event_id": "<string>",
      "status": "pending",
      "retry_count": 0,
      "signature": "t=1640995200,v1=a2114d57b48eac39b9ad189dd8316235...",
      "payload": {
        "id": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "event_type": "user.created",
        "app_id": "<string>",
        "data": {},
        "api_version": "v1"
      },
      "response_status": 200,
      "response_body": "OK",
      "failure_reason": "Connection timeout",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "per_page": 123
  }
}

Authorizations

Authorization
string
header
required

API Secret token

X-Authorization
string
header
required

User Access token

Path Parameters

app_id
string
required

Application ID

id
string
required

Webhook endpoint ID

Query Parameters

page
integer

Page number for pagination

per_page
integer

Number of items per page (max: 100)

status
enum<string>

Filter by delivery status:

  • pending
  • processing
  • delivered
  • failed
Available options:
pending,
processing,
delivered,
failed

Response

successful

deliveries
object[]
pagination
object