GET
/
tax-rates
Header
Query
curl --request GET \
  --url https://eu.sequencehq.com/api/tax-rates \
  --header 'Authorization: <authorization>'
{
  "items": [
    {
      "amount": "0.2",
      "country": "GB",
      "description": "Value Added Tax applied to sales in the UK",
      "id": "d58bf2e3-7a5d-4900-8457-2521c6880f7d",
      "invoiceName": "Value Added Tax",
      "invoiceShortName": "VAT",
      "isArchived": false,
      "isPublished": false,
      "name": "UK Sales Tax",
      "region": "London",
      "sequenceAccountId": "dce9ae85-d8d0-42b4-bcad-f221a64363c6",
      "subRates": [],
      "version": 0,
      "versionId": "82ef6f1a-afc2-4a8d-b868-6d9c72bf395f"
    }
  ],
  "pagination": {
    "after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
    "before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
    "totalResultSize": 10
  }
}

Headers

Authorizationrequired
string

Your API credentials. Eg. Basic {credentials}.

Query Parameters

limit
integer

Maximum number of objects to return per-page.

after
string

Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.after or pagination.before to retrieve each page.

before
string

Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.next or pagination.previous to retrieve each page.

Response

200 - application/json
itemsrequired
object[]
paginationrequired
object