Update a tax
Updates an existing tax’s information.
Use Cases
- Modify tax percentage rates
- Update tax descriptions
- Activate/deactivate taxes
- Change tax names
Path Parameters
id: Tax UUID (required) - Must be a valid UUID format
Example Request
PUT /api/v0/taxes/123e4567-e89b-12d3-a456-426614174000
Example Request Body
{
"name": "Updated Sales Tax",
"description": "Updated sales tax rate",
"percentage": 9.0,
"active": true
}
Notes
- Only include fields that need to be updated
- All fields are optional in updates
- Percentage changes affect future calculations only
Authorizations
Your secret API key. Keep this secure and never expose it in client-side code.
Path Parameters
Tax unique identifier (UUID)
"tax_123e4567-e89b-12d3-a456-426614174000"
Body
Tax update data - only include fields you want to update
Tax name for identification and display purposes
100"Updated Sales Tax"
Detailed description of what this tax covers
255"Updated description for retail sales tax"
Tax rate as a percentage (0-100)
0 <= x <= 1009.5
Whether this tax is currently active and can be applied
false
Array of app IDs where this tax should be available
Response
Successfully updated tax
