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": "e65d1ef2-6dfd-4009-9491-26e19deeeb1a", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "2235742b-0662-462d-b5d0-3ac89083777f", "5ea33b39-b1d7-4f0c-a2bd-0db83b11b5a7" ], "TaxMapping": { "Id": "ca090e93-760d-4dd1-879a-64a9d043ecaa", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "d6470013-fee9-479e-a65b-3b094634c5ad", "CorrelationId": "72a3ef53-a9f1-42aa-bf70-509fd9048c8f", "TaxRateIds": [ "ba6b6296-5b51-4f11-a519-b96c591d4199", "c1be5e8b-98e7-4caf-86fe-571cfd4e0ff0" ], "TaxRates": [ { "Id": "09cac4c4-508c-48ad-bfc4-67b302932e3a", "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-08-12T09:50:54.6981008+00:00", "EndDateUtc": "2025-08-12T09:50:54.6981008+00:00", "IsActive": true }, { "Id": "09cac4c4-508c-48ad-bfc4-67b302932e3a", "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-08-12T09:50:54.6981008+00:00", "EndDateUtc": "2025-08-12T09:50:54.6981008+00:00", "IsActive": true } ] } }