GET
/
v2
/
webhooks
/
{webhook_nanoid}
/
deliveries
Delivery History
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/webhooks/{webhook_nanoid}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "deliveries": [
      {
        "delivery_nanoid": "<string>",
        "event_nanoid": "<string>",
        "status": "queued",
        "response_code": 123,
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook_nanoid
string
required

Unique identifier of the Webhook Endpoint.

Required string length: 15

Query Parameters

cursor
string
limit
integer
Required range: 1 <= x <= 100

Response

200
application/json

Default Response

The response is of type object.