Skip to main content
Endpoint:

Authorization

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

Query Parameters

page
integer
default:1
required
Determine which page.
pageSize
integer
default:10
required
How much data is displayed on the page.

Response

Successful Response

Main Structure (Root)

statusCode
integer
Status code form API.
messages
string
Status message that describes the status code.
hasMore
boolean
Information on whether there is additional data to be retrieved (true/false).
pageCount
integer
Total number of data pages.
pageSize
integer
Number of items per page.
page
integer
The page currently displayed.
data
array of object
List of products displayed.

data Structure (Array Of Object)

id
string<uuid>
Webhook delivery record ID.
createdAt
integer (timestamp)
Creation time of the webhook delivery log.
nextDelivery
string | null
Timestamp of the next delivery attempt (if any).
Associated payment link ID.
payload
string (JSON string)
Original webhook payload sent (contains event + transaction data).
status
string
Delivery status (example: "SUCCESS").
type
string
Webhook event type (example: "payment.received", "payment.reminder").
updatedAt
integer (timestamp)
Last update timestamp.
userId
string
User ID who owns this webhook.
Associated transaction ID.
urlDestination
string (URL)
Destination endpoint where the webhook is delivered.
responsePayload
string | null
Response returned from the destination endpoint.
source
string
Indicates whether the webhook was sent automatically or manually (example: "AUTOMATIC").