Update a tax rate
PUT
/admin/v1/taxes/rates/{id}
const url = 'https://your-store.example.com/admin/v1/taxes/rates/example';const options = { method: 'PUT', headers: {'Content-Type': 'application/json'}, body: '{"country":"example","region":"example","rate":"example","name":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string