Skip to main content
GET
/
v1
/
webhooks
/
{webhook_id}
/
deliveries
List Webhook Deliveries
curl --request GET \
  --url https://api.oneinbox.ai/v1/webhooks/{webhook_id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "webhook_id": "<string>",
      "event": "<string>",
      "status": "<string>",
      "attempt": 123,
      "response_status": 123,
      "response_body": "<string>",
      "error": "<string>",
      "next_retry_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
string<uuid>
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

items
WebhookDeliveryResponse · object[]
required
total
integer
required
limit
integer
required
offset
integer
required