Authorization
Example:
Authorization | Bearer Paste-Your-API-Key-HerePath Parameters
A unique identifier obtained when creating an invoice. If accessed through the dashboard, it can be found at the URL on the invoice details page.Example:
6f8c19ff-5b97-4792-aa89-d2a12797b356Response
Successful ResponseMain Structure (Root)
Status code form API.
Status message that describes the status code.
The invoice detail object.
data Structure (Object)
Unique invoice ID.
Invoice price or nominal value.
Invoice status (e.g.
paid, unpaid, closed).Identifier of the merchant that owns this invoice.
Invoice slug/short URL.
Invoice expiration time in timestamp form (epoch millis).
List of invoice related transactions.
Unique customer ID.
Details of the customer associated with this invoice.
The primary transaction ID for this invoice.
URL for the invoice payment page.
Unique ID of the payment link (usually the same as invoice ID).
transactions Structure (Array Of Object)
Unique transaction ID.
Additional custom data attached to the transaction, can be null.
customer Structure (Object)
Unique customer ID.
Customer’s email address.
Customer’s mobile phone number.
Customer’s name.
Errors
Returned when the API key is missing or invalid:
{ "statusCode": 401, "messages": "Unauthorized" }.Returned when no invoice matches the provided ID:
{ "statusCode": 404, "messages": "Not Found" }.