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": "2e5f4ae4-fe2a-4cbc-b8e2-5b5ed8f1fcaf",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"922eff54-b867-4f64-bcda-b66f60d4421b",
"cc0e1ce1-8149-4b46-9294-dd59ec53323c"
],
"TaxMapping": {
"Id": "d32e96c6-fa55-49ec-a27c-01cb396ce075",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "993a5de5-fcb8-42a1-a27c-c6b5d3c95e80",
"CorrelationId": "e4931884-8e39-4664-b617-c2e1460b6b5a",
"TaxRateIds": [
"2ddc4805-da46-401a-a0e5-27cb021792bb",
"ae100dc8-1293-4abc-b356-1cef6fbca89e"
],
"TaxRates": [
{
"Id": "7de5cf68-c777-4c0f-a20a-f50d2d760064",
"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-15T00:39:24.9340953+00:00",
"EndDateUtc": "2026-04-15T00:39:24.9340953+00:00",
"IsActive": true
},
{
"Id": "7de5cf68-c777-4c0f-a20a-f50d2d760064",
"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-15T00:39:24.9340953+00:00",
"EndDateUtc": "2026-04-15T00:39:24.9340953+00:00",
"IsActive": true
}
]
}
}