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": "464b6fbe-9c35-438e-a064-30bc9906a4a9",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"2a604468-6b08-40de-959d-da0e2ec522c8",
"f8551979-cd0c-4f5e-a5c0-84333561bb9a"
],
"TaxMapping": {
"Id": "ed951d15-eda2-4102-b0d3-c896fb702bba",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "2f2e6940-7469-4ca6-b297-832506d60f5b",
"CorrelationId": "6e09726a-3aab-4b26-91f5-1a185c98442b",
"TaxRateIds": [
"3ba916e9-5fd6-4511-afc7-2ebd04d28a70",
"a9c80cd2-2c05-4b4e-a453-c7189c6b23dc"
],
"TaxRates": [
{
"Id": "2606547f-dedd-49c1-b8a2-4131187fdc8d",
"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-04-11T21:23:08.363107+00:00",
"EndDateUtc": "2026-04-11T21:23:08.363107+00:00",
"IsActive": true
},
{
"Id": "2606547f-dedd-49c1-b8a2-4131187fdc8d",
"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-04-11T21:23:08.363107+00:00",
"EndDateUtc": "2026-04-11T21:23:08.363107+00:00",
"IsActive": true
}
]
}
}