GET v1/Companies({companyId})/TaxRates
Return all Tax Rates for a Company
Information:
Base URL:
https://api.covasoft.net/taxes
Example of a call would be:
https://api.covasoft.net/taxes/v1/Companies({CompanyId})/TaxRates
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| companyId | The unique Company Id that was provided in your onboarding pacakage | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
All the Tax Rates for a Company
Collection of TaxRate| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | globally unique identifier | None. | |
| CompanyId | integer | None. | |
| Name | string | None. | |
| DisplayName | string | None. | |
| Description | string | None. | |
| Rate | decimal number | None. | |
| TaxRateType | Percentage or FlatRate | string | None. | 
| TaxCalculatedOn | Taxes calculated on SoldAtPrice or BasePriceListPrice | string | None. | 
| Layer | For compound taxes. Does this tax apply on top of other taxes. Currently only support single compound levels. Zero (0) is base level, one (1) is compounding tax | integer | None. | 
| StartDateUtc | date | None. | |
| EndDateUtc | date | None. | |
| IsActive | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
[
  {
    "Id": "33a7b0ae-0ab1-434e-a1ca-b9ed153f13b7",
    "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-31T11:15:04.6230142+00:00",
    "EndDateUtc": "2025-10-31T11:15:04.6230142+00:00",
    "IsActive": true
  },
  {
    "Id": "33a7b0ae-0ab1-434e-a1ca-b9ed153f13b7",
    "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-31T11:15:04.6230142+00:00",
    "EndDateUtc": "2025-10-31T11:15:04.6230142+00:00",
    "IsActive": true
  }
]