Skip to main content
POST
/
v1
/
tax_overrides
Create
curl --request POST \
  --url https://{defaultHost}/v1/tax_overrides \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tax_override": {
    "tax_zone": "06224208-9c43-4c17-8d0b-8a027a56c8d7",
    "product_collection": "a25e41da-79e6-4dd5-b8ca-820689527b04",
    "rate": 10
  }
}
'
{
  "id": "61aaaf70-f41c-4b0c-9ec6-420272bad560",
  "object": "tax_override",
  "shipping": false,
  "rate": 10,
  "product_collection": "a25e41da-79e6-4dd5-b8ca-820689527b04",
  "tax_zone": "06224208-9c43-4c17-8d0b-8a027a56c8d7",
  "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.

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.