Invoices
Invoice API Methods and Refference
Last updated
Invoice API Methods and Refference
Last updated
Id is unique identifier that represents Invoice object for quering details of specific invoice
Parent id points to relative invoice that was parent in the chain of invoices. Sometimes we need to make several tranches, thats how we can bind several invoices into chain.
Client id is a identifier of your customer. Its represents a unique UUID v4 that pointers to specific user or customer to whom you direct your invoice. If you have account managment system, you may input user's id in your DB as client_id to easy bind your user's payments separate from others.
Amount of funds needed to complete invoice. It's depends on choosen currency in invoice body while creating, to calculate current rates and amount that left to pay.
Represents amount of funds to current invoice currency that was already submited as paid in one or several transactions.
Type of invoice. For now we support "payment" only.
Status of the invoice represents it's current stage. It may be ACTIVE / SUCCESS / CANCELED.
You cannot cancel invoices with SUCCESS statuses.
Represents timestamp when invoice was created.
Represents timestamp of new transactions appears in the Invoice or invoice status changes.
See products API section
See payload section
Retrieves a list of all invoices associated with the authenticated merchant. Results are paginated and can be filtered by status.
List of invoices successfully retrieved
Unique identifier of the invoice
ID of the parent invoice if this is a child invoice
ID of the client who needs to pay this invoice
Total amount to be paid in the specified currency
Amount that has been paid so far
Type of the invoice, currently only 'payment' is supported
Current status of the invoice:
Additional custom data associated with the invoice
Timestamp when the invoice was created
Timestamp of the last invoice update
Represents a fiat currency
List of products included in this invoice
Cancels an active invoice. Cancelled invoices cannot receive payments. Only active invoices can be cancelled.
Invoice ID to cancel
Invoice successfully cancelled
Unique identifier of the invoice
ID of the parent invoice if this is a child invoice
ID of the client who needs to pay this invoice
Total amount to be paid in the specified currency
Amount that has been paid so far
Type of the invoice, currently only 'payment' is supported
Current status of the invoice:
Additional custom data associated with the invoice
Timestamp when the invoice was created
Timestamp of the last invoice update
Represents a fiat currency
List of products included in this invoice
Creates a new invoice for specified amount and currency. The invoice can be associated with specific products.
ID of the merchant application
Type of invoice, currently only 'payment' is supported
ID of the client who needs to pay
Three-letter currency code (e.g., USD)
Total amount to be paid
Invoice successfully created
Unique identifier of the invoice
ID of the parent invoice if this is a child invoice
ID of the client who needs to pay this invoice
Total amount to be paid in the specified currency
Amount that has been paid so far
Type of the invoice, currently only 'payment' is supported
Current status of the invoice:
Additional custom data associated with the invoice
Timestamp when the invoice was created
Timestamp of the last invoice update
Represents a fiat currency
List of products included in this invoice
Retrieves detailed information about a specific invoice
Invoice ID
Invoice details successfully retrieved
Unique identifier of the invoice
ID of the parent invoice if this is a child invoice
ID of the client who needs to pay this invoice
Total amount to be paid in the specified currency
Amount that has been paid so far
Type of the invoice, currently only 'payment' is supported
Current status of the invoice:
Additional custom data associated with the invoice
Timestamp when the invoice was created
Timestamp of the last invoice update
Represents a fiat currency
List of products included in this invoice