Methods
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
Last updated