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": "7a35883a-f517-4ab0-95d6-8ae011263634",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"444431a5-2bb3-4fe1-acc2-1dc263037b58",
"0e2fdbad-a25e-4b45-a833-0e0de56a8393"
],
"TaxMapping": {
"Id": "de56762d-dd4c-4c10-b8f5-4cd0cb9d676b",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "1b0aacce-830c-4dbe-801e-eece4b99bf23",
"CorrelationId": "8dd01672-7dbd-42df-807e-857c604ac592",
"TaxRateIds": [
"14b49ce1-7bc2-4355-a743-b6df0355c8ce",
"8565ee87-9f83-4b7e-a7ba-b3206d18034e"
],
"TaxRates": [
{
"Id": "d2d64829-cfa8-486f-a832-dc1b1967aaa5",
"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-05-05T14:43:29.3009891+00:00",
"EndDateUtc": "2026-05-05T14:43:29.3009891+00:00",
"IsActive": true
},
{
"Id": "d2d64829-cfa8-486f-a832-dc1b1967aaa5",
"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-05-05T14:43:29.3009891+00:00",
"EndDateUtc": "2026-05-05T14:43:29.3009891+00:00",
"IsActive": true
}
]
}
}