> For the complete documentation index, see [llms.txt](https://docs.tebex.io/developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tebex.io/developers/headless-api/guides/gift-cards/remove-gift-card.md).

# Remove Gift Card

To remove a gift card, provide the `card_number` to remove.&#x20;

## Remove a gift card from the basket.

> Removes a gift card from the basket.

```json
{"openapi":"3.1.0","info":{"title":"Tebex Headless API","version":"2.0.0"},"tags":[{"name":"Headless","description":"Main API scoped to public token"}],"servers":[{"url":"https://headless.tebex.io/api/accounts/{token}","description":"Main API scoped to public token","variables":{"token":{"default":"","description":"The store's public token"}}}],"paths":{"/baskets/{basketIdent}/giftcards/remove":{"post":{"tags":["Headless"],"operationId":"removeGiftCard","summary":"Remove a gift card from the basket.","parameters":[{"$ref":"#/components/parameters/basketIdent"}],"description":"Removes a gift card from the basket.","requestBody":{"description":"Provide the `card_number` to remove from the basket.","content":{"application/json":{"schema":{"type":"object","properties":{"card_number":{"type":"string"}}}}}},"responses":{"200":{"description":"Gift card removed successfully."},"422":{"description":"The provided request is invalid. The error response will include detail as to which parameter failed validation."}}}}},"components":{"parameters":{"basketIdent":{"name":"basketIdent","in":"path","required":true,"schema":{"type":"string"},"description":"The basket identifier."}}}}
```
