# Snooze a card

> Hide a card until a time. Cancels any auto-ship deadline on it.

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

```bash
curl -X POST -H "Authorization: Bearer $REVNU_API_TOKEN" \
  -H "content-type: application/json" \
  -d '{"until":1893456000000}' \
  https://revnu.com/api/v1/review/k97…/snooze
```

## Body

`until`, epoch milliseconds, in the future. Snoozing cancels the trust ladder's `autoResolveAt` so nothing ships while you are not looking.

## 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.
