curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates/{id} \
--header 'Authorization: Bearer <token>'
{
"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 the details of an existing custom tax rate.
curl --request GET \
--url https://api.hyperline.co/v1/taxes/rates/{id} \
--header 'Authorization: Bearer <token>'
{
"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.
The response is of type object
.
Was this page helpful?