Delete a price list scheduler

How to delete an existing price list scheduler via API

To delete a price list scheduler, send a DELETE request to the /api/price_list_schedulers/:id endpoint, where id is the id of the price list scheduler that you want to delete.

Request

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

Example

The following request tries to delete the price list scheduler identified by the ID "xYZkjABcde":

curl -g -X DELETE \
  'https://yourdomain.commercelayer.io/api/price_list_schedulers/xYZkjABcde' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'

Last updated