🔑 Authentication
To authenticate your REST requests, pass your API key as a Bearer token in the `Authorization` header file on every secure endpoint.
Authorization: Bearer your_api_key_here
🧾 Invoices API
Query corporate invoices or compile new billing files dynamically.
POST
/api/v2/invoices/create
Payload Parameters
| Field | Type | Description |
|---|---|---|
| customer_id | string | Unique client registry index. |
| amount | decimal | Invoice value before taxes. |
| tax_percent | integer | Applicable GST percentage (e.g. 18). |
JSON Response Mockup
{
"status": "success",
"invoice_id": "INV-8291",
"total_amount": 1180.00
}
"status": "success",
"invoice_id": "INV-8291",
"total_amount": 1180.00
}