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": "a11ebb8b-443b-4453-b3a4-ee7a2f2e7fc4",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": "82483a97-2f2c-4b3d-bd8c-1261ffc32cf6",
  "tax_zone": "5969a260-9d3b-44b4-96ad-a01e881b80b9",
  "created_at": 1772113066,
  "updated_at": 1772113066
}

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.