GET
/
tax-registrations
Header
Query
curl --request GET \
  --url https://eu.sequencehq.com/api/tax-registrations \
  --header 'Authorization: <authorization>'
{
  "items": [
    {
      "country": "GB",
      "customerId": "06457f78-85cd-4140-9972-67c6cd8f6071",
      "id": "3271ca41-d538-404f-a15f-25856a37fb88",
      "merchantId": "06457f78-85cd-4140-9972-67c6cd8f6071",
      "sequenceAccountId": "a2e7ec72-e3b1-4349-8d8b-c1ad3cea03a1",
      "state": "CA",
      "taxIdentifier": "GB123456789"
    }
  ],
  "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