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": "4f9d1e93-aec8-4509-9e6e-1418c5a34974",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"65777144-16b2-4711-9ded-414448fc2e3c",
"ae8afe21-14ee-4c7f-af53-692fe3a12805"
],
"TaxMapping": {
"Id": "3c57031d-505a-439d-931d-09888b4e538c",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "c8728acf-7dc7-418e-94fc-56271f3f96cd",
"CorrelationId": "5fe858aa-c844-4a89-958e-b0118f5a262c",
"TaxRateIds": [
"d0e6b975-69bc-418e-a4e1-c1c5eaad0ba7",
"ab5d0637-92ea-45e2-b912-f49f8c1bc585"
],
"TaxRates": [
{
"Id": "891bc8fc-e4a7-46ca-bc7a-c00803c81409",
"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-08-16T09:27:15.5334318+00:00",
"EndDateUtc": "2026-08-16T09:27:15.5334318+00:00",
"IsActive": true
},
{
"Id": "891bc8fc-e4a7-46ca-bc7a-c00803c81409",
"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-08-16T09:27:15.5334318+00:00",
"EndDateUtc": "2026-08-16T09:27:15.5334318+00:00",
"IsActive": true
}
]
}
}