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": "92e50d9c-074f-4030-a728-658ec44334bb",
  "object": "tax_registration",
  "label": null,
  "manual_rate": 5.5,
  "tax_identifier": "90f5bcf6-2622-4b80-baf6-58504dfe5f3c",
  "tax_zone": "2f06b52a-439c-4187-86f8-a2659fb99ec8",
  "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.

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.