Skip to main content
PATCH
/
v1
/
tax_registrations
/
{id}
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/tax_registrations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_registration": {
    "tax_identifier": {
      "number_type": "au_abn",
      "number": "51824753556"
    }
  }
}
'
{
  "id": "39004bd7-e7fe-441a-91dd-4a4200296634",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": "af2d50e5-02d2-4607-89c0-ff18094fd2f1",
  "tax_zone": "0bcc3cc9-4b2f-42e8-a53d-2ec978b2d84d",
  "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

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.