Get Invoices V1
curl --request GET \
  --url https://api.revolv3.com/api/Invoices/v{version}
[
  {
    "invoiceId": 1,
    "customerId": null,
    "merchantInvoiceRefId": "1234-5678-9101",
    "binNumber": "411111",
    "last4Digit": "1111",
    "invoiceStatus": "Pending",
    "subtotal": 60.99,
    "tax": 5.4,
    "total": 66.39,
    "billingDate": "08-Aug-25",
    "merchantLegalName": null,
    "merchantCustomerRefId": null,
    "customerFirstName": null,
    "customerLastName": null
  },
  {
    "invoiceId": 2,
    "customerId": null,
    "merchantInvoiceRefId": "1234-5678-9101",
    "binNumber": "411111",
    "last4Digit": "1111",
    "invoiceStatus": "Pending",
    "subtotal": 40.99,
    "tax": 3.6,
    "total": 43.59,
    "billingDate": "08-Sep-25",
    "merchantLegalName": null,
    "merchantCustomerRefId": null,
    "customerFirstName": null,
    "customerLastName": null
  }
]

Path Parameters

version
string
required

Query Parameters

merchantCustomerRefId
string
billingStartDate
string
billingEndDate
string
lastUpdateStartDate
string
lastUpdateEndDate
string
lastAttemptOnly
boolean
includeRawProcessorResponse
boolean
page
integer
pageSize
integer
orderBy
enum<integer>
Available options:
1,
2,
3

Response

OK

The response is of type object[].