GET v1/Companies({CompanyId})/TaxCategories({TaxCategoryId}
Returns the Tax Category Details for a Tax Category
Information:
Base URL:
https://api.covasoft.net/taxes
Example of a call would be:
https://api.covasoft.net/taxes/v1/Companies({CompanyId})/TaxCategories({TaxCategoryId})
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId |
The unique Company Id that was provided in your onboarding pacakage |
integer |
Required |
| TaxCategoryId |
The Tax Category Id Guid for the tax you want Details |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Tax Category Details for a Tax Category
TaxCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CompanyId | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| IsDefault | boolean |
None. |
|
| ProductCatalogIds | Collection of globally unique identifier |
None. |
|
| TaxMapping | TaxMapping |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "9167b07d-9588-445b-810a-bdc5810a9e18",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"b4d030da-a4dc-4c65-b380-68b149a79312",
"d3d7d197-1967-4959-a9b5-4eedce9f5231"
],
"TaxMapping": {
"Id": "c6aeced1-f843-4abe-a664-d4e47b3e3cf0",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "fd1b3c3f-5102-4ee3-b425-529ed26e0971",
"CorrelationId": "0f4d4196-9b42-4635-b4ad-480ed356bd48",
"TaxRateIds": [
"96e4ab3e-5b52-4e1f-89df-244eda3c05d6",
"0b1b6940-7d9c-4040-a988-1f9e78ece701"
],
"TaxRates": [
{
"Id": "6c4efdea-df7b-4331-944b-50902bb113b9",
"CompanyId": 2,
"Name": "sample string 3",
"DisplayName": "sample string 4",
"Description": "sample string 5",
"Rate": 6.1,
"TaxRateType": "sample string 7",
"TaxCalculatedOn": "sample string 8",
"Layer": 9,
"StartDateUtc": "2026-01-01T01:17:25.3848098+00:00",
"EndDateUtc": "2026-01-01T01:17:25.3848098+00:00",
"IsActive": true
},
{
"Id": "6c4efdea-df7b-4331-944b-50902bb113b9",
"CompanyId": 2,
"Name": "sample string 3",
"DisplayName": "sample string 4",
"Description": "sample string 5",
"Rate": 6.1,
"TaxRateType": "sample string 7",
"TaxCalculatedOn": "sample string 8",
"Layer": 9,
"StartDateUtc": "2026-01-01T01:17:25.3848098+00:00",
"EndDateUtc": "2026-01-01T01:17:25.3848098+00:00",
"IsActive": true
}
]
}
}