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": "d210f6b2-229c-4800-8561-c39513e9a318",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"88070d74-4d14-45c3-88d2-f67beeda9e59",
"a3053c38-6299-4ef2-b326-704c13ac5940"
],
"TaxMapping": {
"Id": "4cb4a482-29ae-40a7-bc0f-df6ba8440351",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "c884c876-b3a7-4e22-909b-8c9c4f34c098",
"CorrelationId": "759c59f7-8bf9-4d9d-9ef5-164637f8c961",
"TaxRateIds": [
"a969bf37-f9c7-40fb-9ba0-ab40147859e4",
"2ebeeaf3-f88f-4596-9979-58bb06de605f"
],
"TaxRates": [
{
"Id": "3ff1445c-ad7f-43de-898d-d6a094b6670b",
"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-08-05T04:18:21.5957006+00:00",
"EndDateUtc": "2026-08-05T04:18:21.5957006+00:00",
"IsActive": true
},
{
"Id": "3ff1445c-ad7f-43de-898d-d6a094b6670b",
"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-08-05T04:18:21.5957006+00:00",
"EndDateUtc": "2026-08-05T04:18:21.5957006+00:00",
"IsActive": true
}
]
}
}