Invoices
An invoice is a billable document sent to a client. The Invoices API lets you create, send, and manage invoices, apply payments, download PDFs, and trigger actions such as emailing or marking them paid. An invoice drives the client balance and moves through the statuses below.
Invoice Statuses
- STATUS_DRAFT = 1
- Draft invoices are not visible in the client portal, are not active and they do not impact the client balance
- STATUS_SENT = 2
- Send invoices are visible in the client portal, are active and impact the client balance
- STATUS_PARTIAL = 3
- An invoice which has been partially paid
- STATUS_PAID = 4
- An invoice which has been fully paid
- STATUS_CANCELLED = 5
- When a invoice is cancelled the invoice balance is set to zero and the status updated to Cancelled, the client balance is also adjusted down. If payments have been applied to the invoice these will remain linked to the invoice
- STATUS_REVERSED = 6
- When a invoice has been reversed, the previous payments relationships are unlinked and cannot be restored
- STATUS_OVERDUE = -1
- An invoice which is still payable past its due date
- STATUS_UNPAID = -2
- An invoice which is not yet due, but also, not paid
getList invoices
/api/v1/invoicespostCreate invoice
/api/v1/invoicesgetShow invoice
/api/v1/invoices/{id}putUpdate invoice
/api/v1/invoices/{id}deleteDelete invoice
/api/v1/invoices/{id}getEdit invoice
/api/v1/invoices/{id}/editgetBlank invoice
/api/v1/invoices/createpostBulk invoice actions
/api/v1/invoices/bulkgetCustom invoice action
getDownload invoice PDF
/api/v1/invoice/{invitation_key}/downloadgetDownload delivery note
/api/v1/invoices/{id}/delivery_notepostAdd invoice document
/api/v1/invoices/{id}/upload