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": "0052f419-9973-4c9b-9109-fed55b1f5acb",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"9b647250-34c8-4d05-aa0b-d9701a1ab11a",
"cb0a04e0-acf2-4b2e-9620-c7c276d9988d"
],
"TaxMapping": {
"Id": "c7ef6654-5238-4130-9491-fec4d4cd5b7b",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "3c02ed7b-1c31-47c6-b9ba-af8bf14ff1e9",
"CorrelationId": "70222420-b8d5-454d-a791-90ef0ba232e7",
"TaxRateIds": [
"72580dcc-3cd8-401b-8956-32751745963f",
"86e06732-a9a0-4793-9a37-39f5dc1a1460"
],
"TaxRates": [
{
"Id": "82e38cfa-1e38-4c93-bd3f-354cb790c158",
"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-02-11T00:41:31.2772329+00:00",
"EndDateUtc": "2026-02-11T00:41:31.2772329+00:00",
"IsActive": true
},
{
"Id": "82e38cfa-1e38-4c93-bd3f-354cb790c158",
"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-02-11T00:41:31.2772329+00:00",
"EndDateUtc": "2026-02-11T00:41:31.2772329+00:00",
"IsActive": true
}
]
}
}