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": "320976f6-a230-4f59-a797-f3e0a65d7357",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"0062cb3c-d199-4709-b89a-2796c342ccd3",
"ed22cb9b-100f-403b-8d60-06a26a7be5f7"
],
"TaxMapping": {
"Id": "7b3cc333-d972-471e-9770-55dd8871f76d",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "03bed83f-a42c-4c20-82d2-fd4aa18d1003",
"CorrelationId": "6b23ec40-929c-47e3-9818-c2f20eb14872",
"TaxRateIds": [
"9aab7205-38f5-4a4b-80f3-d2393e966101",
"e476eac7-9352-406f-9800-89220e30fe2e"
],
"TaxRates": [
{
"Id": "57b1e802-2ce4-481c-a14c-8c6674cb66bd",
"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-07T16:00:08.8589182+00:00",
"EndDateUtc": "2026-02-07T16:00:08.8589182+00:00",
"IsActive": true
},
{
"Id": "57b1e802-2ce4-481c-a14c-8c6674cb66bd",
"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-07T16:00:08.8589182+00:00",
"EndDateUtc": "2026-02-07T16:00:08.8589182+00:00",
"IsActive": true
}
]
}
}