> 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/coupons/remove-coupon.md).

# Remove Coupon

To remove a coupon, provide the `coupon_code` of the coupon that was used.&#x20;

## Remove a coupon from the basket.

> Removes a coupon code from a 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}/coupons/remove":{"post":{"tags":["Headless"],"operationId":"removeCoupon","summary":"Remove a coupon from the basket.","parameters":[{"$ref":"#/components/parameters/basketIdent"}],"description":"Removes a coupon code from a basket","requestBody":{"description":"Provide a `coupon_code` to remove from the basket.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplyCouponRequest"}}}},"responses":{"200":{"description":"Successful response."},"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."}},"schemas":{"ApplyCouponRequest":{"type":"object","properties":{"coupon_code":{"type":"string"}}}}}}
```
