# Dismiss a card

> Decline a card. It closes without shipping, the agent's trust for that kind of work resets, and the reason teaches it.

Canonical: https://revnu.com/docs/review-dismiss

```bash
curl -X POST -H "Authorization: Bearer $REVNU_API_TOKEN" \
  -H "content-type: application/json" \
  -d '{"reason":"Off brand, we never discount."}' \
  https://revnu.com/api/v1/review/k97…/dismiss
```

## Body

`reason`, optional, up to 2,000 characters. Outbound-setup cards also cancel their proposal.

## Frequently asked questions

### Which scope does this need?

`review:write`. A token without it gets `403` with `requiredScope` in the body. `GET /me` shows a token's scopes.

### Are responses cached?

No. Every response is `Cache-Control: no-store`, so what you read is current.
