Invoices
List invoices
Returns a paginated list of Invoice objects for the authenticated account, sorted by creation date with the most recent invoices first.
GET
Query Parameters
Maximum number of invoices to return (default 10).
Required range:
1 <= x <= 100
Pagination cursor; returns items after this invoice ID.
Pagination cursor; returns items before this invoice ID.
Filter results by invoice status.
Available options:
draft
, open
, paid
, void
, uncollectible
Specifies related objects to expand in each invoice (for example, expand[]=line_items
).
Body
application/json · object
Response
200
application/json
A dictionary with a data property that contains an array of up to limit Invoice objects, starting after Invoice starting_after. Each entry in data is a separate Invoice object. If no additional invoices are available, the array is empty.
The response is of type object
.