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": "2db8e119-41f8-44d4-8da9-424d5ab86b02",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"6a6ed37e-740a-4db0-b9b7-d1fb31fc2431",
"febf1120-2d24-4e65-a6f5-20ee14b1a9df"
],
"TaxMapping": {
"Id": "4874b850-0c7c-4f91-bbf3-de279da4bc39",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "a9203a19-491d-45fe-989e-ba8c51f01821",
"CorrelationId": "12a84ccc-41c8-4a69-b9f3-0b315a5ad639",
"TaxRateIds": [
"68b7fe67-71aa-404f-a986-3ee133935d31",
"44daabcc-39b1-4a1c-81e4-2eeefce93bbd"
],
"TaxRates": [
{
"Id": "27de4a39-6a21-42c0-8c81-901892870370",
"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-06-30T16:36:00.2647597+00:00",
"EndDateUtc": "2026-06-30T16:36:00.2647597+00:00",
"IsActive": true
},
{
"Id": "27de4a39-6a21-42c0-8c81-901892870370",
"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-06-30T16:36:00.2647597+00:00",
"EndDateUtc": "2026-06-30T16:36:00.2647597+00:00",
"IsActive": true
}
]
}
}