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": "826d1d10-b243-48db-be7c-27a3a25b7bed",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"3c0f9817-ef7f-43ba-b23b-a97c4f14a7d7",
"e62d043c-2a52-412b-bc58-11d7cb6c6f24"
],
"TaxMapping": {
"Id": "a3aa9de2-5ec0-4f19-a2d1-75c86a8866eb",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "46860e02-291b-4ca5-8c86-6ce2b108f167",
"CorrelationId": "622fdd43-859a-4891-95fb-235802794585",
"TaxRateIds": [
"fbda9c8b-2fea-4e10-9b92-4610b6819351",
"a38c4387-31ed-4871-8c3e-f086a0bda8c6"
],
"TaxRates": [
{
"Id": "ff386cfa-0fca-4f1f-98fa-483100e28f27",
"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-06-10T08:36:44.9017551+00:00",
"EndDateUtc": "2026-06-10T08:36:44.9017551+00:00",
"IsActive": true
},
{
"Id": "ff386cfa-0fca-4f1f-98fa-483100e28f27",
"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-06-10T08:36:44.9017551+00:00",
"EndDateUtc": "2026-06-10T08:36:44.9017551+00:00",
"IsActive": true
}
]
}
}