Tax registration
Get all tax registrations for a merchant by merchant ID
Get all tax registrations for a merchant by merchant ID
GET
/
tax-registrations
/
for-merchant
/
{id}
Header
Path
curl --request GET \
--url https://eu.sequencehq.com/api/tax-registrations/for-merchant/{id} \
--header 'Authorization: <authorization>'
{
"items": [
{
"country": "GB",
"customerId": "06457f78-85cd-4140-9972-67c6cd8f6071",
"id": "3271ca41-d538-404f-a15f-25856a37fb88",
"sequenceAccountId": "42020696-da25-44d0-ab79-9ecbf8fc5307",
"state": "CA",
"taxIdentifier": "CA123456789"
}
],
"pagination": {
"after": "nextOffset",
"before": "previousOffset",
"totalResultSize": 100
}
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Path Parameters
idrequired
string
Merchant ID
Response
200 - application/json
itemsrequired
object[]
paginationrequired
object
curl --request GET \
--url https://eu.sequencehq.com/api/tax-registrations/for-merchant/{id} \
--header 'Authorization: <authorization>'
{
"items": [
{
"country": "GB",
"customerId": "06457f78-85cd-4140-9972-67c6cd8f6071",
"id": "3271ca41-d538-404f-a15f-25856a37fb88",
"sequenceAccountId": "42020696-da25-44d0-ab79-9ecbf8fc5307",
"state": "CA",
"taxIdentifier": "CA123456789"
}
],
"pagination": {
"after": "nextOffset",
"before": "previousOffset",
"totalResultSize": 100
}
}