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": "260f37cd-41d2-4bb9-a0c8-7f82a3335dca",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"9d99f22b-4f83-47b2-9521-4c6990737f5c",
"c00e6666-279e-414a-ba47-74e98e41912e"
],
"TaxMapping": {
"Id": "1c63fce9-827f-48eb-9167-734434ba166f",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "92ba7685-d233-4b05-a333-dba4ce0b74c6",
"CorrelationId": "b17fae72-7239-4ead-a9fc-9193a2c7d1d3",
"TaxRateIds": [
"2e3a01d0-ed2f-4fa2-abd5-1fa8a814f796",
"4df8b4c4-0fe9-4a12-a123-771c699858dc"
],
"TaxRates": [
{
"Id": "f9c9a694-43ed-444f-be67-a9149c550894",
"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-01-28T16:57:41.2458541+00:00",
"EndDateUtc": "2026-01-28T16:57:41.2458541+00:00",
"IsActive": true
},
{
"Id": "f9c9a694-43ed-444f-be67-a9149c550894",
"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-01-28T16:57:41.2458541+00:00",
"EndDateUtc": "2026-01-28T16:57:41.2458541+00:00",
"IsActive": true
}
]
}
}