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": "36854873-00ef-4fc2-aebb-977ce6fdabc7", "CompanyId": 2, "Name": "sample string 3", "Description": "sample string 4", "IsDefault": true, "ProductCatalogIds": [ "5b1f8328-f688-48e3-a4b2-5c167681534b", "ca6bcc1f-cc4c-404b-841f-7c67cb69a39e" ], "TaxMapping": { "Id": "9eae928f-00e5-4366-bd49-41570328c0ba", "CompanyId": 2, "TaxCategory": "sample string 3", "TaxCategoryId": "b738e09e-ef9c-457f-8b0b-7be8976e3933", "CorrelationId": "1f42be41-8949-4451-a006-87287b94ddc6", "TaxRateIds": [ "f457bded-f37c-416e-9ca5-9980e382e095", "a5ef8af6-3339-4cb8-9d4a-5984adabc838" ], "TaxRates": [ { "Id": "0aa69931-0fe0-4669-8dfe-45c105f0e075", "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-09-07T04:24:38.2991563+00:00", "EndDateUtc": "2025-09-07T04:24:38.2991563+00:00", "IsActive": true }, { "Id": "0aa69931-0fe0-4669-8dfe-45c105f0e075", "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-09-07T04:24:38.2991563+00:00", "EndDateUtc": "2025-09-07T04:24:38.2991563+00:00", "IsActive": true } ] } }