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": "2a8da77b-300f-4a0c-b4c3-97e8a84d6252",
  "object": "tax_override",
  "shipping": false,
  "rate": 7.5,
  "product_collection": "41c91f68-02a2-48e4-b288-69283bd37630",
  "tax_zone": "6d05b9b2-a9cc-4ec0-8335-b7d34c53bf6d",
  "created_at": 1776176589,
  "updated_at": 1776176589
}

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.