Delete a gift card recipient

How to delete an existing gift card recipient via API

To delete a gift card recipient, send a DELETE request to the /api/gift_card_recipients/:id endpoint, where id is the id of the gift card recipient that you want to delete.

Request

DELETE https://yourdomain.commercelayer.io/api/gift_card_recipients/:id

Example

The following request tries to delete the gift card recipient identified by the ID "xYZkjABcde":

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

Last updated