Retrieve Invoices

Facades: merchant

Overview

An aged list of invoices can be retrieved using method parameters that map to URL parameters on the API.

Parameters

ParameterDescription
dateStartThe start date for the query filter, in YYYY-MM-DD format.
dateEndThe end date for the query filter, in YYYY-MM-DD format.
statusThe invoice status you want to query on, which can be one of the following: New, Paid, Confirmed, Complete, Expired, Invalid, or Declined.

See the InvoiceStatus class for more information.
orderIdThe optional order id specified at time of invoice creation.
limitMaximum results that the query will return (useful for paging results).
offsetNumber of results to offset (ex. skip 10 will give you results starting with the 11th).

Example

<List>Invoice invoices = bitpay.getInvoices('2022-10-01', '2022-10-31', InvoiceStatus.Complete, null, 10);