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": "749c0e11-4662-4fa3-b2c4-0307190c4c31", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "82cd4184-d552-4103-9766-5795c024e0eb", "7e57afcf-a5dd-4c88-af5e-4e937aeb9a8d" ], "TaxMapping": { "Id": "240627b9-8845-4ae0-a9bd-b7034055889e", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "82662122-317b-46e0-9cd7-d14b3e010dd5", "CorrelationId": "c5b487df-d2bf-4935-acc0-acc40d597774", "TaxRateIds": [ "40434d0c-4f18-488b-b258-b5fdb9002568", "851fc154-c926-463f-89eb-cd9819ae1676" ], "TaxRates": [ { "Id": "b1845cd2-9da5-41b4-8568-62ec4d69a03a", "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-01T00:12:26.5620546+00:00", "EndDateUtc": "2025-07-01T00:12:26.5620546+00:00", "IsActive": true }, { "Id": "b1845cd2-9da5-41b4-8568-62ec4d69a03a", "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-01T00:12:26.5620546+00:00", "EndDateUtc": "2025-07-01T00:12:26.5620546+00:00", "IsActive": true } ] } }