Skip to main content
This /history endpoint only returns old webhook history. For the current and up-to-date webhook history, please use the new endpoint: GET /hl/v2/webhooks/new-history (see Webhook New History).
Endpoint:

Authorization

string
required
Example:Authorization | Bearer Paste-Your-API-Key-Here

Query Parameters

integer
default:10
Number of records to return per page. Default 10, maximum 50.
string
Cursor for forward pagination. Pass the nextStartingAfter value from the previous response (a unix-millisecond timestamp string) to fetch the next page.
string
Filter by delivery status (example: "SUCCESS").
string
Filter by webhook event type (example: "payment.received", "payment.reminder").
string
Filter by the destination URL the webhook was delivered to.
string
Start of the creation-date range filter.
string
End of the creation-date range filter.

Response

Successful Response

Main Structure (Root)

integer
Status code form API.
string
Status message that describes the status code.
array of object
List of webhook delivery records.
boolean
Information on whether there is additional data to be retrieved (true/false).
string | null
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)

string<uuid>
Webhook delivery record ID.
integer (timestamp)
Creation time of the webhook delivery log.
string | null
Timestamp of the next delivery attempt (if any).
Associated payment link ID.
string (JSON string)
Original webhook payload sent (contains event + transaction data). This is a JSON-encoded string; its inner structure varies by event type.
string
Delivery status (example: "SUCCESS").
string
Webhook event type (example: "payment.received", "payment.reminder").
integer (timestamp)
Last update timestamp.
string
User ID who owns this webhook.
Associated transaction ID.
string (URL)
Destination endpoint where the webhook is delivered.
string | null
Response returned from the destination endpoint.
string
Indicates whether the webhook was sent automatically or manually (example: "AUTOMATIC").