Methods
Invoice ID
Id is unique identifier that represents Invoice object for quering details of specific invoice
Parent ID
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
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.
Total
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.
Paid
Represents amount of funds to current invoice currency that was already submited as paid in one or several transactions.
Type
Type of invoice. For now we support "payment" only.
Status
Status of the invoice represents it's current stage. It may be ACTIVE / SUCCESS / CANCELED.
You cannot cancel invoices with SUCCESS statuses.
Created At
Represents timestamp when invoice was created.
Updated At
Represents timestamp of new transactions appears in the Invoice or invoice status changes.
Products
See products API section
Payload
See payload section
Last updated