API Reference
Invoices
Create, send, and manage invoices
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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?