Delete a shipment
How to delete an existing shipment via API
To delete a shipment, send a DELETE
request to the /api/shipments/:id
endpoint, where id
is the id of the shipment that you want to delete.
Request
DELETE https://yourdomain.commercelayer.io/api/shipments/:id
Example
The following request tries to delete the shipment identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/shipments/xYZkjABcde' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'
Last updated