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": "a07e8840-7708-4013-bc73-01982463f81c", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "a06c695a-d830-48fe-a401-a4d8ef58debc", "0f8d4bcf-75e6-47a4-a5e3-5e16025a32b5" ], "TaxMapping": { "Id": "b481c8ec-82e5-4a38-97e9-de2de747f62d", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "26137013-8526-4ca7-b040-2ddee4d720a0", "CorrelationId": "8c5fd258-930b-438b-af06-8acdb7c6cfb6", "TaxRateIds": [ "e90d2ab8-58c3-4e2a-a50f-ff4f1c937a51", "c5b8ce0a-c53a-4961-a602-d90e077c3c7c" ], "TaxRates": [ { "Id": "812b7778-687d-48f8-abdb-94fe5e560f1d", "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-04-26T00:51:12.0790333+00:00", "EndDateUtc": "2025-04-26T00:51:12.0790333+00:00", "IsActive": true }, { "Id": "812b7778-687d-48f8-abdb-94fe5e560f1d", "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-04-26T00:51:12.0790333+00:00", "EndDateUtc": "2025-04-26T00:51:12.0790333+00:00", "IsActive": true } ] } }