GET /taxRates

Retrieve all tax rates.

Responses

  • 200 application/json

    List of tax rates

    Hide response attributes Show response attributes object
    • taxRateID integer
    • name string
    • rate number(double)
    • isDefault boolean
    • isActive boolean
  • 500

    Error occurred while retrieving tax rates

GET /taxRates
curl \
 -X GET http://api.example.com/taxRates
Response examples (200)
[
  {
    "taxRateID": 42,
    "name": "string",
    "rate": 42.0,
    "isDefault": true,
    "isActive": true
  }
]