List all invoices

Returns a list of invoices. The invoices are returned sorted by creation date in ascending order.

GET/v3/billing/invoices
JWT
invoice:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"

Responses

200 OK
[
  {
    "id": "string",
    "number": "string",
    "issueDate": "2019-08-24T14:15:22Z",
    "total": 0,
    "paid": true,
    "status": "active",
    "invoiceUrl": "string",
    "checkoutUrl": "string"
  }
]