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": "4a894dc3-76d7-4e7d-91d0-b58d2af0aaf4",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"6637d07e-9e18-4e70-bef3-1a474d8293db",
"054f054b-4828-4782-a5c4-be8ba41b0ab6"
],
"TaxMapping": {
"Id": "b30999a5-3fb5-4077-bd92-2417cbfd2950",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "d1c9d3f0-f451-4c4d-b762-d91c5fad4975",
"CorrelationId": "307de98e-dae9-4615-9ad4-fc031b42439d",
"TaxRateIds": [
"07ed7b79-532f-4348-a1c1-f37dfe1627dd",
"a0066d30-3bf0-4844-8409-ec9d5170e082"
],
"TaxRates": [
{
"Id": "7b138c97-5978-4d7d-82b6-c72f0e43507d",
"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-07-21T08:34:31.7169674+00:00",
"EndDateUtc": "2026-07-21T08:34:31.7169674+00:00",
"IsActive": true
},
{
"Id": "7b138c97-5978-4d7d-82b6-c72f0e43507d",
"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-07-21T08:34:31.7169674+00:00",
"EndDateUtc": "2026-07-21T08:34:31.7169674+00:00",
"IsActive": true
}
]
}
}