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": "a6f1f465-f6b2-4d6e-84de-0fe97b358e62",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"285b2f90-1550-4e92-8ec3-5dd155a25610",
"8a6a0d8d-ed28-4ace-82e3-b7326ba62275"
],
"TaxMapping": {
"Id": "a090431c-2c3f-4db0-8f8d-c714447ff487",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "ab895af5-8991-40ce-baec-8c7592396f5b",
"CorrelationId": "ac625065-7cec-47e5-a900-fcc8096d6e77",
"TaxRateIds": [
"bde0d280-ded2-4b58-b2b9-0dbda7472182",
"5263ea5d-9f6a-49bc-b2bc-a0e13868aa37"
],
"TaxRates": [
{
"Id": "79729b32-2d6f-4d64-9d54-0e36991be563",
"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-04-10T03:15:58.9395919+00:00",
"EndDateUtc": "2026-04-10T03:15:58.9395919+00:00",
"IsActive": true
},
{
"Id": "79729b32-2d6f-4d64-9d54-0e36991be563",
"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-04-10T03:15:58.9395919+00:00",
"EndDateUtc": "2026-04-10T03:15:58.9395919+00:00",
"IsActive": true
}
]
}
}