Skip to main content
GET
/
v1
/
tax_overrides
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/tax_overrides/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "308db423-166c-4dbd-915f-13b678e75e0b",
  "object": "tax_override",
  "shipping": false,
  "rate": 7.5,
  "product_collection": "4c566c68-2fb8-4f4a-921c-195c30d5c565",
  "tax_zone": "a1599339-c25c-4557-be42-d42ab344c807",
  "created_at": 1782479617,
  "updated_at": 1782479617
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

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.