curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "taxr_YfiSnLIYORD9VN",
"name": "VAT",
"description": "Standard VAT",
"code": "STAND_VAT",
"rate": 20,
"invoicing_entity_id": "ive_jerrb484RHn",
"created_at": "2024-06-03T12:32:22Z",
"updated_at": "2024-06-07T18:13:25Z"
}
]
}Retrieve existing custom tax rates.
curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "taxr_YfiSnLIYORD9VN",
"name": "VAT",
"description": "Standard VAT",
"code": "STAND_VAT",
"rate": 20,
"invoicing_entity_id": "ive_jerrb484RHn",
"created_at": "2024-06-03T12:32:22Z",
"updated_at": "2024-06-07T18:13:25Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0Was this page helpful?