Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Deletes a Tax Rate
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('http://{defaultHost}/api/v2/platform/tax_rates/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url http://{defaultHost}/api/v2/platform/tax_rates/{id} \
--header 'Authorization: Bearer <token>'{
"error": "The access token is invalid"
}{
"error": "The resource you were looking for could not be found."
}Was this page helpful?
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('http://{defaultHost}/api/v2/platform/tax_rates/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url http://{defaultHost}/api/v2/platform/tax_rates/{id} \
--header 'Authorization: Bearer <token>'{
"error": "The access token is invalid"
}{
"error": "The resource you were looking for could not be found."
}