GET
/
v1
/
invoices
/
customers
/
{id}
{
  "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "total_invoices": 123,
  "total_amount": 123,
  "currency_breakdown": {},
  "invoices": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "invoice_number": "<string>",
      "status": "draft",
      "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "currency": "<string>",
      "total": 123,
      "due_date": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

status
enum<string>
Available options:
draft,
pending,
paid,
sent,
overdue
date_from
string
date_to
string
currency
string
Required string length: 3

Response

200 - application/json
Customer invoices
customer_id
string
total_invoices
integer
total_amount
number
currency_breakdown
object
invoices
object[]