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.
The Tax Rates Data Model represents the percentage at which an individual or corporation is taxed. This unified model provides a unified representation of tax rates across various accounting platforms.
Unified tax rate properties : Essential tax rate details, such as name, code, effective tax rate, and total tax rate, are standardized across different accounting platforms
Tax components support : The data model encompasses an array of individual tax components, enabling the representation of complex tax structures and relationships between components
Effective tax rate calculation : The model accounts for the compounding effects of all tax components, providing an accurate effective tax rate for each entry
Attributes
Tax Rate Attributes
Property Type Description rootfi_id integer Unique identifier assigned by Commenda for this tax rate rootfi_created_at string Timestamp when this record was created in Commenda’s system (ISO 8601) rootfi_updated_at string Timestamp when this record was last updated in Commenda’s system (ISO 8601) rootfi_company_id integer Company identifier this tax rate belongs to within Commenda platform_id string Unique identifier for this tax rate in the source accounting platform name string The display name of the tax rate code string The simple ID or code for the tax rate tax_type string The type of tax as mentioned in the accounting platform effective_tax_rate double The total tax rate after accounting for the compounding effects of all tax components total_tax_rate double The sum of all the tax rate components components array The list of tax rate components updated_at string The date and time the tax rate was last updated
Tax Components
The Tax Components Data Model complements the Tax Rates Data Model by providing detailed information about individual components of tax rates.
Tax Component Attributes
Property Type Description name string The display name of the tax rate component rate double The tax rate of the component tax_agency string The tax agency of the tax rate component is_compound boolean Whether the tax rate component is compound
Properties Supported
Property Type Description platform_id string The Platform’s ID for the tax rate name string The display name of the tax rate code string The simple ID or code for the tax rate tax_type string The type of tax as mentioned in the accounting platform effective_tax_rate double The total tax rate after accounting for the compounding effects of all tax components total_tax_rate double The sum of all the tax rate components components array The list of tax rate components updated_at string The date and time the tax rate was last updated
The Tax Rate Response Object
{
"rootfi_id" : 25177 ,
"rootfi_created_at" : "2024-01-24T11:12:02.641Z" ,
"rootfi_updated_at" : "2024-01-24T11:12:02.000Z" ,
"rootfi_company_id" : 1109 ,
"platform_id" : "123456_1" ,
"name" : "Inter State Exchange Taxes" ,
"code" : "GST" ,
"tax_type" : "sgst" ,
"effective_tax_rate" : 18 ,
"total_tax_rate" : 18 ,
"components" : [
{
"name" : "Inter State Exchange Taxes" ,
"rate" : 18 ,
"tax_agency" : "igst" ,
"is_compound" : false
}
],
"updated_at" : "2023-12-21T10:14:26.353Z"
}