Get Tax Rates

GET /f/finance/{businessLocationId}/tax-rates

Returns tax rates for a business location.

Path parameters

Responses

  • 200 application/json

    Tax rates returned

    Hide response attributes Show response attributes object
    • Additional properties are allowed.

      Hide _embedded attribute Show _embedded attribute object
GET /f/finance/{businessLocationId}/tax-rates
curl \
 -X GET https://api.trial.lsk.lightspeed.app/f/finance/{businessLocationId}/tax-rates \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "_embedded": {
    "taxRateList": [
      {
        "code": "VAT20",
        "description": "VAT 20%",
        "rate": 1.2,
        "taxIncluded": true,
        "accountingReference": "string"
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https://api.ikentoo.com/f/finance/141948669132802/tax-rates"
    }
  }
}