Taxes
Create a tax
Create a new tax rate. Set appliedByDefault to automatically apply to all invoices.
post/api/taxes
Request body
Example request
{
"name": "VAT",
"code": "vat_18",
"rate": 18,
"description": "Value Added Tax",
"appliedByDefault": true
}Response
Tax created
Example response
{
"id": "clx1234567890",
"name": "VAT",
"code": "vat_18",
"rate": "18.0000",
"description": "Value Added Tax",
"appliedByDefault": true
}