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": "b861be54-b0fe-4189-bd5a-3e9376b01223",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": "d5ab6537-6f35-4040-a89e-efa972a50be1",
  "tax_zone": "8a0e2094-93d0-4004-b851-4e4d2356f055",
  "created_at": 1770234907,
  "updated_at": 1770234907
}

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.