Delete an order subscription item
How to delete an existing order subscription item via API
Last updated
How to delete an existing order subscription item via API
To delete an order subscription item, send a DELETE request to the /api/order_subscription_items/:id endpoint, where id is the id of the order subscription item that you want to delete.
DELETE https://yourdomain.commercelayer.io/api/order_subscription_items/:id
The following request tries to delete the order subscription item identified by the ID "XAyRWNUzyN":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/order_subscription_items/XAyRWNUzyN' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'On success, the API responds with a 204 No Content status code.
Last updated