curl --request GET \
--url http://{defaultHost}/api/v2/platform/tax_rates \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "<string>",
"attributes": {},
"relationships": {}
}
],
"meta": {
"count": 123,
"total_count": 123,
"total_pages": 123
},
"links": {
"self": "<string>",
"next": "<string>",
"prev": "<string>",
"last": "<string>",
"first": "<string>"
}
}Returns a list of Tax Rates
curl --request GET \
--url http://{defaultHost}/api/v2/platform/tax_rates \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "<string>",
"attributes": {},
"relationships": {}
}
],
"meta": {
"count": 123,
"total_count": 123,
"total_pages": 123
},
"links": {
"self": "<string>",
"next": "<string>",
"prev": "<string>",
"last": "<string>",
"first": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Select which associated resources you would like to fetch, see: https://jsonapi.org/format/#fetching-includes
Records returned
Was this page helpful?