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": "9093a49c-99b1-4a7d-a73b-e91476177aaf",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"051ed954-e44a-4447-9e23-21e44ea546ee",
"5a3ee5a4-4cd8-44c6-9d02-574b1cf26872"
],
"TaxMapping": {
"Id": "6d0ef102-cd92-405c-bcc5-b717dbdfc1c9",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "146efd14-af75-47d6-aad8-8f351bfd797b",
"CorrelationId": "b495a82b-4b3f-406b-a9a2-ba5f7292547a",
"TaxRateIds": [
"722367f7-96e4-4cef-8c89-940baeb1afe6",
"1bc1623a-b7ad-4b30-bb75-4fb8ec0cc388"
],
"TaxRates": [
{
"Id": "dd8c89df-1a47-432a-a136-e13338802b0d",
"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-12-09T21:19:47.6324759+00:00",
"EndDateUtc": "2025-12-09T21:19:47.6324759+00:00",
"IsActive": true
},
{
"Id": "dd8c89df-1a47-432a-a136-e13338802b0d",
"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-12-09T21:19:47.6324759+00:00",
"EndDateUtc": "2025-12-09T21:19:47.6324759+00:00",
"IsActive": true
}
]
}
}