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