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": "1beb7b37-e01d-4f50-8807-9e3463cb0988",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"e892821d-ad96-43c6-b2dd-7c6d3692d4da",
"3ac386fa-cbe7-4bdf-ad92-1597d53a6153"
],
"TaxMapping": {
"Id": "ea01843f-2ae0-4b1e-be15-2ee0ac977e95",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "8a7aa79a-d3a3-48bc-a4b5-8d49cf70cafe",
"CorrelationId": "199f91c7-932f-44ca-b7bf-d8df15083807",
"TaxRateIds": [
"20ded333-ce7e-4aca-a8b7-9f0fe5ee1d56",
"81521765-f33d-4c8a-83ad-f1dd145bcb8b"
],
"TaxRates": [
{
"Id": "699da48b-8696-4efe-bb3c-ad4b92272c0e",
"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-08T06:28:13.3000724+00:00",
"EndDateUtc": "2025-12-08T06:28:13.3000724+00:00",
"IsActive": true
},
{
"Id": "699da48b-8696-4efe-bb3c-ad4b92272c0e",
"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-08T06:28:13.3000724+00:00",
"EndDateUtc": "2025-12-08T06:28:13.3000724+00:00",
"IsActive": true
}
]
}
}