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
TaxCategory| Name | 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": "e3c324d2-e736-40c5-9fc7-95675f3dc7ce",
  "CompanyId": 2,
  "Name": "sample string 3",
  "Description": "sample string 4",
  "IsDefault": true,
  "ProductCatalogIds": [
    "2c579f8f-ecf0-49d6-b2d2-bb63bc17377a",
    "1f0253c4-a803-4bae-a9b9-b9603a516ebf"
  ],
  "TaxMapping": {
    "Id": "c08baf08-3072-4ee2-9316-eaad813ca86d",
    "CompanyId": 2,
    "TaxCategory": "sample string 3",
    "TaxCategoryId": "8ef3408c-b148-457e-a748-c3bc65dcfe23",
    "CorrelationId": "53223a56-c59a-461e-a02c-775304b8b4c7",
    "TaxRateIds": [
      "7f68ee63-0bbe-423a-9354-cd9fc30feef5",
      "32223e3a-52fb-4853-8054-40c7170b0e54"
    ],
    "TaxRates": [
      {
        "Id": "ab21c871-4458-4c1d-95e0-93c30b9584b3",
        "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-10-31T04:36:59.233218+00:00",
        "EndDateUtc": "2025-10-31T04:36:59.233218+00:00",
        "IsActive": true
      },
      {
        "Id": "ab21c871-4458-4c1d-95e0-93c30b9584b3",
        "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-10-31T04:36:59.233218+00:00",
        "EndDateUtc": "2025-10-31T04:36:59.233218+00:00",
        "IsActive": true
      }
    ]
  }
}