Skip to main content
GET
/
v1
/
tax_registrations
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/tax_registrations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "253621ad-d349-48de-a9fa-f4eb8a0fc3b8",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": null,
  "tax_zone": "c6776d58-8da8-4d57-9f4c-b53705dc50c4",
  "created_at": 1767909783,
  "updated_at": 1767909783
}

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

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

label
string | null

The tax label for this tax registration. If blank, the default tax label from the tax zone will be used.

manual_rate
number | null

The manual tax rate to use for this tax registration.

tax_identifier
object

Expanded – The associated tax identifier object.

tax_zone
string

Expandable – The associated tax zone ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.