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": "9b66d974-5264-4c65-89c0-8fd5aaffdf7b", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "6a734a95-234f-4576-ace6-6e5faac64130", "5c87bbc2-1509-4fba-8951-98e347944863" ], "TaxMapping": { "Id": "f63f8110-7509-4d4d-9664-36317df9323b", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "f5106089-ecfc-4f9f-b13e-95c69849eb15", "CorrelationId": "7cc54d51-982b-42b0-9531-9d99233a9248", "TaxRateIds": [ "711026d7-38d4-421b-b091-14a97183d9a6", "c292e082-eff1-4acf-88b0-51cc951671eb" ], "TaxRates": [ { "Id": "594b1e23-1c64-412a-b5f2-adc95412cf37", "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-07-22T18:44:48.7011835+00:00", "EndDateUtc": "2025-07-22T18:44:48.7011835+00:00", "IsActive": true }, { "Id": "594b1e23-1c64-412a-b5f2-adc95412cf37", "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-07-22T18:44:48.7011835+00:00", "EndDateUtc": "2025-07-22T18:44:48.7011835+00:00", "IsActive": true } ] } }