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": "3ea64d01-2a11-4e30-94f4-03b7865ab6cb",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"bcc24cac-c7d5-4a18-94cc-39c906224ae9",
"beddce24-6695-491a-aa79-962d06cbd1b1"
],
"TaxMapping": {
"Id": "5c17413a-8d44-4441-8f1d-509783cdfc89",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "5905ae46-93d3-42a1-b52a-616a1f03e797",
"CorrelationId": "610ce9ae-46d4-4150-9982-791ff8f04242",
"TaxRateIds": [
"9d8d54ba-1869-4411-93cd-2401d2fa1066",
"782283fa-0feb-4bed-9bf2-8fa819afbcdd"
],
"TaxRates": [
{
"Id": "d4cafb6b-a239-472c-9523-204f89cbd2eb",
"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-09-05T09:47:31.6274945+00:00",
"EndDateUtc": "2026-09-05T09:47:31.6274945+00:00",
"IsActive": true
},
{
"Id": "d4cafb6b-a239-472c-9523-204f89cbd2eb",
"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-09-05T09:47:31.6274945+00:00",
"EndDateUtc": "2026-09-05T09:47:31.6274945+00:00",
"IsActive": true
}
]
}
}