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": "8823d44e-1d57-4fb0-8250-ab702001de29",
"CompanyId": 2,
"Name": "sample string 3",
"Description": "sample string 4",
"IsDefault": true,
"ProductCatalogIds": [
"7dfa9552-17af-4d20-830f-df27964eea42",
"00814e0d-5e1a-44f7-a46f-38146286299a"
],
"TaxMapping": {
"Id": "25999a35-ca44-4a4a-9c85-563868b0a109",
"CompanyId": 2,
"TaxCategory": "sample string 3",
"TaxCategoryId": "dd96d8f3-9786-45d8-9b3e-e9697a30a520",
"CorrelationId": "23fdc1c1-b324-4b04-83c5-bf1358cf45f5",
"TaxRateIds": [
"4bc3979f-a003-40c5-8e57-acac6f1f6cc6",
"6d4fb606-fd13-47be-837e-6829662cb317"
],
"TaxRates": [
{
"Id": "cdbcafc4-4781-4dcc-bdc2-8f05d0601b28",
"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-31T13:43:40.3956617+00:00",
"EndDateUtc": "2025-12-31T13:43:40.3956617+00:00",
"IsActive": true
},
{
"Id": "cdbcafc4-4781-4dcc-bdc2-8f05d0601b28",
"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-31T13:43:40.3956617+00:00",
"EndDateUtc": "2025-12-31T13:43:40.3956617+00:00",
"IsActive": true
}
]
}
}