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": "68b9e776-44db-47b2-bd77-12d03292dff2",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"ed21c2c6-0588-4f84-96d3-cd56dbee91b1",
"08ac0fb4-6d53-4933-b531-e9651d48a9b6"
],
"TaxMapping": {
"Id": "c0ec45b8-2854-4193-b361-654e73c0eb87",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "b24d3238-3378-4abe-853b-450d35d02a21",
"CorrelationId": "7759feb7-a18e-4c3d-a8f5-3ee06f94c6d5",
"TaxRateIds": [
"a58e8eba-7cd2-4534-b132-39d40236c160",
"9b7240dd-dce2-4f93-9157-5f393670f84f"
],
"TaxRates": [
{
"Id": "c6b47bbe-9b9d-418a-a3ff-695c902b42a0",
"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-13T07:50:26.0014895+00:00",
"EndDateUtc": "2026-04-13T07:50:26.0014895+00:00",
"IsActive": true
},
{
"Id": "c6b47bbe-9b9d-418a-a3ff-695c902b42a0",
"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-13T07:50:26.0014895+00:00",
"EndDateUtc": "2026-04-13T07:50:26.0014895+00:00",
"IsActive": true
}
]
}
}