Implement debt management in 5 easy steps
Retrieve filtered list of invoices
Start by retrieving a list of invoices by calling GET /invoices and applying the appropriate filters, for example payment status or due date, to give your users an overview of their unpaid invoices.
Show invoice details
When the end user has selected a specific invoice, present all the details including line items by calling GET /invoices/{id}.
Retrieve the invoice document (optional)
Present original PDF documents by calling GET /invoices/{id}/document.
Retrieve payments (optional)
Periodically retrieve payments by calling GET /payments to stop reminders as soon as the invoice has been paid.