Create, send, and manage invoices
GET /api/invoices?page=1&status=SENT
POST /api/invoices
{ "merchantId": "clx...", "customerEmail": "customer@example.com", "customerName": "John Doe", "items": [ { "description": "Consulting Services", "quantity": 1, "unitPrice": 500.00, "taxable": true } ], "taxRate": 8.5, "paymentTerms": "NET_30", "memo": "Thank you for your business", "template": "MODERN" }
POST /api/invoices/:id/send
POST /api/invoices/:id/void
GET /api/invoices/settings PATCH /api/invoices/settings
Was this page helpful?