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": "273d9b7d-57ce-48a1-8111-3145f7fbdef6",
    "manual_rate": 10
  }
}
'
{
  "id": "11fa5041-9766-4742-b3b6-6eccaec58923",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 10,
  "tax_identifier": null,
  "tax_zone": "273d9b7d-57ce-48a1-8111-3145f7fbdef6",
  "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.

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.