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": "5d0e93ce-bb13-4958-b03c-22681c6567ce", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "019e98f9-b57b-407d-ade0-1f63d3bea968", "7ee5fc85-5b59-40f4-8da7-333b92e86392" ], "TaxMapping": { "Id": "79355486-d670-436b-b96d-de6edf015991", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "3153a989-b86e-40ad-a1f7-10f7fc51deec", "CorrelationId": "84b04264-9bce-46fe-94da-e0fb35a39f60", "TaxRateIds": [ "5f0f4bb3-2a55-43f2-bf81-8a207259ae46", "af1a8391-c4f9-47e2-a3f2-739e6dd7f572" ], "TaxRates": [ { "Id": "17a224a6-d641-46f8-a70d-c28ca6bff719", "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-06-09T13:46:16.728299+00:00", "EndDateUtc": "2025-06-09T13:46:16.728299+00:00", "IsActive": true }, { "Id": "17a224a6-d641-46f8-a70d-c28ca6bff719", "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-06-09T13:46:16.728299+00:00", "EndDateUtc": "2025-06-09T13:46:16.728299+00:00", "IsActive": true } ] } }