cURL
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
0 <= x <= 100
x >= 0
Show child attributes
Total of existing items.
1
Number of items returned.
Number of items skipped.
0
Whether the total count is approximate.
false
List of TaxRate.
Tax rate ID.
"taxr_YfiSnLIYORD9VN"
Name of the tax rate.
"VAT"
Internal description of the tax rate.
"Standard VAT"
Tax rate code identifier.
"STAND_VAT"
The percentage rate of the tax.
20
ID of the invoicing entity to which the tax rate is attached.
"ive_jerrb484RHn"
Tax rate creation date. UTC date time string in the ISO 8601 format.
"2024-06-03T12:32:22Z"
Tax rate last edition date. UTC date time string in the ISO 8601 format.
"2024-06-07T18:13:25Z"
Was this page helpful?