get Invoices
Retrieves a paginated list of invoices, optionally filtered by customer, account, or status.
Return
A pair containing a InvoiceResponses.ListInvoicesResponse on success, or a NetworkingError on failure.
Parameters
The page number to retrieve. Defaults to the first page when null.
The number of invoices per page. Uses the API default when null.
The customer ID to filter results by. Returns invoices for all customers when null.
The account ID to filter results by. Returns invoices for all accounts when null.
The InvoiceStatus to filter results by. Returns invoices of all statuses when null.
Retrieves a paginated list of invoices and delivers the result via a callback.
Parameters
The page number to retrieve. Defaults to the first page when null.
The number of invoices per page. Uses the API default when null.
The customer ID to filter results by. Returns invoices for all customers when null.
The account ID to filter results by. Returns invoices for all accounts when null.
The InvoiceStatus to filter results by. Returns invoices of all statuses when null.
Invoked on completion with a InvoiceResponses.ListInvoicesResponse on success, or a NetworkingError on failure.