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": "5f12938b-ab31-42f7-8fe1-72df9cadbb3f",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"32cdc498-0276-4fd6-8b20-7326a7121958",
"5d7800eb-159c-4566-850f-bdaa848a1a90"
],
"TaxMapping": {
"Id": "f7f552d7-dc6f-454b-9a20-d56906508dfd",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "a5a90ccb-f606-471b-a8c6-1a73e367a3ba",
"CorrelationId": "e3807f38-9f38-4625-a93f-320cc62034dc",
"TaxRateIds": [
"038773eb-44cd-4539-8311-771ae0eb122f",
"f5cccfc1-5069-4d8c-84d3-fbd540e42c9c"
],
"TaxRates": [
{
"Id": "fb157480-6964-4649-93ee-47fe11747e6e",
"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-11T23:25:00.2160127+00:00",
"EndDateUtc": "2026-04-11T23:25:00.2160127+00:00",
"IsActive": true
},
{
"Id": "fb157480-6964-4649-93ee-47fe11747e6e",
"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-11T23:25:00.2160127+00:00",
"EndDateUtc": "2026-04-11T23:25:00.2160127+00:00",
"IsActive": true
}
]
}
}