Skip to main content
GET
/
v1
/
webhook-endpoints
/
{id}
/
deliveries
List webhook deliveries
curl --request GET \
  --url https://api.meum.io/v1/webhook-endpoints/{id}/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "event_id": "<string>",
      "attempt_number": 123,
      "status_code": 200,
      "attempted_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Store-scoped API key. Prefix with sk_live_. Example: Authorization: Bearer sk_live_EXAMPLE_DO_NOT_USE

Path Parameters

id
string
required

Webhook endpoint public ID (wh_...).

Pattern: ^(inv_|txn_|plink_|wh_|whd_|evt_|int_)[0-9a-z]{20,32}$

Query Parameters

limit
integer
default:20

How many items to return per page (1–100). Defaults to 20 if omitted.

Required range: 1 <= x <= 100
starting_after
string

Pagination cursor. Pass the ID of the last item from the previous page to get the next page. Omit on the first request.

Pattern: ^(inv_|txn_|plink_|wh_|whd_|evt_|int_)[0-9a-z]{20,32}$

Response

Recent delivery attempts for the endpoint

data
object[]
required