The TaxRate Data Model represents tax rates applicable to products and services in different jurisdictions. Tax rates are used to calculate tax amounts on invoices and transactions.Documentation Index
Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt
Use this file to discover all available pages before exploring further.
- Jurisdiction-based: Tax rates are tied to specific geographic areas
- Rate management: Track tax rates as decimal values for accurate calculations
- Status tracking: Monitor active vs archived tax rates
- Multiple rate support: Support for different tax types (VAT, sales tax, GST)
Attributes
TaxRate Attributes
| Property | Type | Description |
|---|---|---|
| rootfi_id | integer | Unique identifier for this tax rate |
| rootfi_created_at | string | When this tax rate was created in Commenda’s system (ISO 8601) |
| rootfi_updated_at | string | When this tax rate was last updated (ISO 8601) |
| rootfi_company_id | integer | Company identifier this tax rate belongs to |
| platform_id | string | Platform-specific tax rate identifier |
| name | string | Display name (e.g., “California Sales Tax”) |
| rate | number | Tax rate as a decimal (e.g., 0.0725 for 7.25%) |
| jurisdiction | string | Geographic area where tax applies (e.g., “CA”, “NY”) |
| status | enum | Current status of this tax rate |
| created_at | string | Original creation timestamp (ISO 8601) |
| updated_at | string | Last update timestamp (ISO 8601) |
Status Enum Values
| Value | Description |
|---|---|
ACTIVE | Tax rate is currently active |
ARCHIVED | Tax rate is no longer used |
UNKNOWN | Status cannot be determined |