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": "b7e8aaf7-a5e7-41ce-a2d2-06af970b9648",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"f73d2208-0f2a-40d3-9d30-218e084fb58c",
"0f21a66f-ed5c-420c-8edd-75537d269a71"
],
"TaxMapping": {
"Id": "7ea14f1c-65f9-4046-8cd3-0a52990ca65b",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "5ce3ce69-ab3a-446f-a8f6-44f6cdd5234e",
"CorrelationId": "0afafe03-036b-4107-bf62-c13b7ae8c28a",
"TaxRateIds": [
"ac4afcdd-7ada-4904-b0b2-17ba44fc3ce2",
"8f136aaa-a034-4bdc-a374-5136161dd8b2"
],
"TaxRates": [
{
"Id": "afb3dd03-bcd9-48b6-a203-ac8e390534e3",
"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-11T17:17:44.0475149+00:00",
"EndDateUtc": "2025-12-11T17:17:44.0475149+00:00",
"IsActive": true
},
{
"Id": "afb3dd03-bcd9-48b6-a203-ac8e390534e3",
"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-11T17:17:44.0475149+00:00",
"EndDateUtc": "2025-12-11T17:17:44.0475149+00:00",
"IsActive": true
}
]
}
}