API reference
Search
K
Links

Delete a price volume tier

How to delete an existing price volume tier via API
To delete a price volume tier, send a DELETE request to the /api/price_volume_tiers/:id endpoint, where id is the id of the price volume tier that you want to delete.

Request

DELETE https://yourdomain.commercelayer.io/api/price_volume_tiers/:id

Example

Request
Response
The following request tries to delete the price volume tier identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/price_volume_tiers/xYZkjABcde' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'
On success, the API responds with a 204 No Content status code.