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": "91c1ca0a-275c-49a4-88f9-438319a09906",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"387c41f6-e470-4e3b-afba-80cff2fb2ded",
"e435d9ce-328b-403a-8242-d4f24866e771"
],
"TaxMapping": {
"Id": "cd6cee99-7f52-4e15-9932-401aeab79a80",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "5c5b4602-3e37-4834-b62e-332ea4576ef5",
"CorrelationId": "4c125c5f-5d19-4050-bbf1-b83f112ff248",
"TaxRateIds": [
"7dad36ef-79ff-4945-9050-c1b25d164b5a",
"4ec50753-fb98-4edf-87ad-8538f1449de8"
],
"TaxRates": [
{
"Id": "96510cec-1bbe-4f49-8223-3e32b6dd0759",
"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-02-22T10:40:15.1080143+00:00",
"EndDateUtc": "2026-02-22T10:40:15.1080143+00:00",
"IsActive": true
},
{
"Id": "96510cec-1bbe-4f49-8223-3e32b6dd0759",
"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-02-22T10:40:15.1080143+00:00",
"EndDateUtc": "2026-02-22T10:40:15.1080143+00:00",
"IsActive": true
}
]
}
}