API reference
Search
⌃K
Links

Delete a delivery lead time

How to delete an existing delivery lead time via API
To delete a delivery lead time, send a DELETE request to the /api/delivery_lead_times/:id endpoint, where id is the id of the delivery lead time that you want to delete.

Request

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

Example

Request
Response
The following request tries to delete the delivery lead time identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/delivery_lead_times/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.