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": "6dfeae90-57ed-4c10-9e80-f3c48cbcba8a",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"82562778-d598-43a9-8c9f-29519aebd5a1",
"79108d73-4c53-4015-9d9b-62d50ed51aba"
],
"TaxMapping": {
"Id": "865125d3-456c-4fc4-9cb3-767a1f7d494a",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "4fc26b34-2bfe-4d44-bba3-5917cac06d8d",
"CorrelationId": "2411b042-db9f-4053-92bc-d0627f18f6d5",
"TaxRateIds": [
"adf08d13-8ec8-48ea-8b9d-84af4a3aab54",
"d6249e23-98c2-4c8f-af8e-cd47529ff493"
],
"TaxRates": [
{
"Id": "9b6f44f0-eda1-41cb-bc2f-1036d90ddfaf",
"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-03-20T05:42:04.3995171+00:00",
"EndDateUtc": "2026-03-20T05:42:04.3995171+00:00",
"IsActive": true
},
{
"Id": "9b6f44f0-eda1-41cb-bc2f-1036d90ddfaf",
"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-03-20T05:42:04.3995171+00:00",
"EndDateUtc": "2026-03-20T05:42:04.3995171+00:00",
"IsActive": true
}
]
}
}