List delivery logs
Notification Webhooks
List delivery logs
Returns the delivery-attempt history for a webhook endpoint, newest first. Each row records
one attempt to deliver one event: which event (event_idempotency_key + topic), the
delivery leg’s status, the attempt number, whether it succeeded, the HTTP status the endpoint
returned, any error message, and the round-trip latency.
Use this to debug why an endpoint is or isn’t receiving events.
Pagination
page— 1-indexed page number. Defaults to1. Between1and1,000,000.per_page— page size. Defaults to50. Between1and200.
The response carries pagination metadata under meta (page, per_page, total,
has_more).
Example
GET /v1/notifications/webhooks/whr_01HXYZABC1234567890ABCDEFG/logs?page=1&per_page=50
GET
List delivery logs
Authorizations
API key issued during merchant onboarding.
Path Parameters
Webhook endpoint id (whr_…).
Pattern:
[^\/#\?]+?Example:
"whr_01HXYZABC1234567890ABCDEFG"
Query Parameters
1-indexed page number.
Required range:
1 <= x <= 1000000Example:
1
Page size (1–200).
Required range:
1 <= x <= 200Example:
50