Skip to main content
PATCH
/
v1
/
tax_overrides
/
{id}
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/tax_overrides/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_override": {
    "rate": 5
  }
}
'
{
  "id": "96862f12-6327-4334-a9d9-35f4fe2f9088",
  "object": "tax_override",
  "shipping": false,
  "rate": 5,
  "product_collection": "dc2e88d9-db51-442e-accc-5b5c4ad878cd",
  "tax_zone": "8072399f-cf01-4e6a-89db-ae0e5a51c710",
  "created_at": 1767909782,
  "updated_at": 1767909782
}

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_override
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

shipping
boolean

Whether or not this tax override applies to shipping.

rate
number | null

The tax rate to use for this tax override.

product_collection
string

Expandable – The associated product collection ID.

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.