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": "dbc8490d-2313-4a45-beaa-1e68227e5f1e",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"b346f02c-6b8e-4d65-a04f-98927e26dbab",
"0c73847a-0e09-4fab-b69f-9ca793e0dfa1"
],
"TaxMapping": {
"Id": "6cd72285-8051-4415-8211-4f197d55b0f9",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "2237d71f-fb97-4a68-b3b6-37965da69b2c",
"CorrelationId": "46d5a011-d846-46d8-8cae-cc6dbcdab4e0",
"TaxRateIds": [
"be469cfd-6577-415f-a007-0de863f99b77",
"47c1970b-fef3-483a-bdcb-561c31336baf"
],
"TaxRates": [
{
"Id": "e06e45fd-caad-4557-b185-c96ad86d9c8f",
"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": "2025-11-21T14:57:26.3809492+00:00",
"EndDateUtc": "2025-11-21T14:57:26.3809492+00:00",
"IsActive": true
},
{
"Id": "e06e45fd-caad-4557-b185-c96ad86d9c8f",
"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": "2025-11-21T14:57:26.3809492+00:00",
"EndDateUtc": "2025-11-21T14:57:26.3809492+00:00",
"IsActive": true
}
]
}
}