Get a page of tax rates

Query Parameters
  • PageIndex
    Type: integerFormat: int32

    The page index of the search.

  • PageSize
    Type: integerFormat: int32

    The number of items to be returned in the response. Returns pages of up to 500 records.

  • SearchText
    Type: string

    The search text to filter tax rates by. This can be all or part of a tax rate name.

Responses
  • application/json
Request Example for get/v1/tax-rates
curl 'https://api.consignlyhq.com/v1/tax-rates?PageIndex=1&PageSize=25&SearchText=GST'
{
  "index": 1,
  "total": 1,
  "taxRates": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": null,
      "percent": 1
    }
  ]
}