Authorization
Example:
Authorization | Bearer Paste-Your-API-Key-HereQuery Parameters
Number of records to return per page. Default
10, maximum 50.Cursor for forward pagination. Pass the
nextStartingAfter value from the previous response (a unix-millisecond timestamp string) to fetch the next page.Filter by delivery status (example:
"SUCCESS").Filter by webhook event type (example:
"payment.received", "payment.reminder").Filter by the destination URL the webhook was delivered to.
Start of the creation-date range filter.
End of the creation-date range filter.
Response
Successful ResponseMain Structure (Root)
Status code form API.
Status message that describes the status code.
List of webhook delivery records.
Information on whether there is additional data to be retrieved (true/false).
Cursor for the next page (unix-millisecond timestamp string), or
null when there is no further data. Pass it back as the startingAfter query parameter.data Structure (Array Of Object)
Webhook delivery record ID.
Creation time of the webhook delivery log.
Timestamp of the next delivery attempt (if any).
Associated payment link ID.
Original webhook payload sent (contains event + transaction data). This is a JSON-encoded string; its inner structure varies by event
type.Delivery status (example:
"SUCCESS").Webhook event type (example:
"payment.received", "payment.reminder").Last update timestamp.
User ID who owns this webhook.
Associated transaction ID.
Destination endpoint where the webhook is delivered.
Response returned from the destination endpoint.
Indicates whether the webhook was sent automatically or manually (example:
"AUTOMATIC").