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": "f6a773d1-5a9b-49ec-9e25-0e095c3a05db",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"b1148861-ba71-4cb5-8533-982d062f126c",
"99977b7c-6fe6-48d8-a984-f6486c486387"
],
"TaxMapping": {
"Id": "006af2d2-2a72-474b-a0be-3d8294e236cd",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "b9f8dbd9-c4fa-44d2-8d8f-e8125294cc0d",
"CorrelationId": "3c130762-7020-4fb0-8257-4bcb2a6ec0c1",
"TaxRateIds": [
"61250e3b-6d27-400b-8546-245422318eca",
"c54c7727-8176-4a76-b940-05d46728904c"
],
"TaxRates": [
{
"Id": "ee6a123e-2897-4125-82e0-729abfe14453",
"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-04T17:08:57.7455519+00:00",
"EndDateUtc": "2026-08-04T17:08:57.7455519+00:00",
"IsActive": true
},
{
"Id": "ee6a123e-2897-4125-82e0-729abfe14453",
"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-04T17:08:57.7455519+00:00",
"EndDateUtc": "2026-08-04T17:08:57.7455519+00:00",
"IsActive": true
}
]
}
}