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": "cbccb89e-e4a5-49b7-a163-fb70ad0003d7",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"ed322f6f-41fb-44f8-8f98-6af9dff8d954",
"edb3c9dc-18cb-426a-9753-bb33535ce9e4"
],
"TaxMapping": {
"Id": "b603a14e-771b-4b6a-98d2-abd911e71eeb",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "a5da7917-5db7-4e5a-b58c-7dce19e0884e",
"CorrelationId": "04b5395d-293c-485a-95bc-dba24c5c5b0f",
"TaxRateIds": [
"ff180293-f180-4f3e-bef4-320f2e32d0dc",
"592bbe6c-eba4-4e45-9662-b562634aee7e"
],
"TaxRates": [
{
"Id": "98df4783-70d3-48e9-b760-b505ad384d60",
"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-11T16:30:34.9882808+00:00",
"EndDateUtc": "2025-12-11T16:30:34.9882808+00:00",
"IsActive": true
},
{
"Id": "98df4783-70d3-48e9-b760-b505ad384d60",
"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-11T16:30:34.9882808+00:00",
"EndDateUtc": "2025-12-11T16:30:34.9882808+00:00",
"IsActive": true
}
]
}
}