curl --request GET \
--url https://api.hyperline.co/v1/customers/{id}/taxes/rates \
--header 'Authorization: Bearer <token>'
[
{
"scheme": "exempt",
"rate": 123
}
]
Retrieve the eligible tax rates for a customer.
curl --request GET \
--url https://api.hyperline.co/v1/customers/{id}/taxes/rates \
--header 'Authorization: Bearer <token>'
[
{
"scheme": "exempt",
"rate": 123
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object[]
.
Was this page helpful?