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