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": "d8af5d91-3801-4eb2-aeec-e6d6a346dbbc",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"511f88a1-6b00-401b-ae89-0dde1900054e",
"af1d9b4e-ae47-4766-b9b3-1d7b8e0f51d2"
],
"TaxMapping": {
"Id": "5d451465-4f70-43b9-a36a-6beb88bfec6f",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "bae7a41f-d5ff-4945-806b-7d6c427ca15f",
"CorrelationId": "d69121be-74e1-423b-a36b-b6b44351d5fa",
"TaxRateIds": [
"4b2a6594-15e6-4855-8333-a449337a0e46",
"d50c81a5-f273-4922-af52-d837af1716c1"
],
"TaxRates": [
{
"Id": "7154736c-629f-422d-b81f-5cc91f196fc2",
"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-20T10:43:10.8124054+00:00",
"EndDateUtc": "2026-01-20T10:43:10.8124054+00:00",
"IsActive": true
},
{
"Id": "7154736c-629f-422d-b81f-5cc91f196fc2",
"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-20T10:43:10.8124054+00:00",
"EndDateUtc": "2026-01-20T10:43:10.8124054+00:00",
"IsActive": true
}
]
}
}