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": "928591d5-8a7c-4951-aa65-9ce8341e2352",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"be905e97-3276-4cc0-bf9c-5402b454cb78",
"77903c6e-2fe7-4db9-a6ca-fcfd6df23a51"
],
"TaxMapping": {
"Id": "ee567ad6-99fd-42b1-ab26-0d692633a016",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "72b6e89d-cf24-48b1-aece-baf2f67c677c",
"CorrelationId": "a9cf6aaa-143e-4b6b-8682-daec85d38c28",
"TaxRateIds": [
"bb733e05-84ce-4de7-962d-67e96d6bdce9",
"5a5295f9-1fdb-4846-8c42-5741fd982c86"
],
"TaxRates": [
{
"Id": "862ed7af-383b-459d-9595-4304c603b95a",
"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-05T02:53:20.1911535+00:00",
"EndDateUtc": "2026-08-05T02:53:20.1911535+00:00",
"IsActive": true
},
{
"Id": "862ed7af-383b-459d-9595-4304c603b95a",
"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-05T02:53:20.1911535+00:00",
"EndDateUtc": "2026-08-05T02:53:20.1911535+00:00",
"IsActive": true
}
]
}
}