GET
/
v1
/
taxes
/
rates
/
{id}
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/json
id
string
required

Tax rate ID.

name
string
required

Name of the tax rate.

description
string | null
required

Internal description of the tax rate.

code
string
required

Tax rate code identifier.

rate
number
required

The percentage rate of the tax.

invoicing_entity_id
string
required

ID of the invoicing entity to which the tax rate is attached.

created_at
string
required

Tax rate creation date. UTC date time string in the ISO 8601 format.

updated_at
string
required

Tax rate last edition date. UTC date time string in the ISO 8601 format.