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.
Tax rate scheme.
exempt: The customer is exempt from tax.standard: The customer is subject to standard tax.reverse_charge: The customer is subject to reverse charge tax.manual: The customer tax rate is manually set.not_eligible: The customer is not eligible for tax.exempt, standard, reverse_charge, manual, not_eligible Tax rate percentage.
Was this page helpful?