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
TaxCategoryName | 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": "9c0f7b5b-4a66-49bc-8801-b183d431b956", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "592e677c-e6dc-4308-858a-0db14d14b3fc", "2cd0e9a1-be17-48fc-bf8c-450475da88a9" ], "TaxMapping": { "Id": "3b54fc87-b097-421c-886a-c0db65538881", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "bd28bdcd-1239-4ded-bdb1-638f8c2d2ae7", "CorrelationId": "ef03d487-5f02-429b-8a38-3c0642fcd2c0", "TaxRateIds": [ "af8457bf-cab6-403f-9161-e4cd2632b2fe", "68d74866-817d-4d76-ac52-0e196f88bb64" ], "TaxRates": [ { "Id": "1adff612-f073-4619-8ea4-07583144188c", "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-10-10T18:46:34.2173175+00:00", "EndDateUtc": "2025-10-10T18:46:34.2173175+00:00", "IsActive": true }, { "Id": "1adff612-f073-4619-8ea4-07583144188c", "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-10-10T18:46:34.2173175+00:00", "EndDateUtc": "2025-10-10T18:46:34.2173175+00:00", "IsActive": true } ] } }