Skip to main content
POST
/
v1
/
tax_registrations
Create
curl --request POST \
  --url https://{defaultHost}/v1/tax_registrations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_registration": {
    "tax_zone": "5dc0ef14-7370-4676-8389-0942c8274267",
    "manual_rate": 10
  }
}
'
{
  "id": "8d95a9a1-912a-4452-9150-6051bc00c3bd",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 10,
  "tax_identifier": null,
  "tax_zone": "5dc0ef14-7370-4676-8389-0942c8274267",
  "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.

Body

application/json
tax_registration
object

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.