Skip to content

Update a tax rate

PUT
/admin/v1/taxes/rates/{id}
curl --request PUT \
--url https://your-store.example.com/admin/v1/taxes/rates/example \
--header 'Content-Type: application/json' \
--data '{ "country": "example", "region": "example", "rate": "example", "name": "example" }'
id
required
string
Media type application/json
object
country
string
/^[A-Za-z]{2}$/
region
Any of:
string
>= 1 characters <= 64 characters
rate
string
/^0(\.\d{1,4})?$/
name
string
>= 1 characters <= 128 characters
Example generated
{
"country": "example",
"region": "example",
"rate": "example",
"name": "example"
}