Customers
Get customer invoices
Retrieve all invoices for a specific customer.
get/api/customers/{id}/invoices
Path parameters
idstring required
Customer ID
Response
List of customer invoices
Example response
[
{
"id": "clx1234567890",
"invoiceNumber": "INV-2026-0001",
"customerId": "clxcust123",
"amount": "99.9900",
"currency": "USD",
"status": "DRAFT",
"pdfUrl": "/uploads/invoices/inv-123.pdf",
"customer": {
"id": "clx1234567890",
"name": "Jane Doe",
"email": "jane@example.com"
}
}
]