For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 "XAyRWNUzyN":

curl -g -X DELETE \
  'https://yourdomain.commercelayer.io/api/easypost_pickups/XAyRWNUzyN' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'

Last updated