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": "af1019fd-272a-4397-8cc9-d71bff778059",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": null,
  "tax_zone": "96df53d4-1571-4895-a295-594c5028ce3b",
  "created_at": 1771429916,
  "updated_at": 1771429916
}

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.