> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Clear Saved AI Style

> Restore normal AI generation defaults without changing existing emails

Requires `emails:write`. [Get and review](./get) the current saved style, then pass its nonempty `revisionId` as `expectedStyleId`. Clearing restores normal defaults for future generation and keeps existing emails unchanged.

```bash theme={null}
curl -X DELETE https://api.sequenzy.com/api/v1/email-ai-style \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"expectedStyleId":"STYLE_REVISION"}'

sequenzy email-ai-style clear --expected-style-id STYLE_REVISION --json
```

MCP `clear_email_ai_style` accepts `expectedStyleId` and optional `companyId`. Personal keys can use `X-Company-Id` or CLI `--company`.

```json theme={null}
{ "success": true, "style": null, "revisionId": null, "canManage": true }
```

An unsupported snapshot can also be cleared using the revision returned by GET. With no stored style, there is nothing to clear.

Errors: `401` for missing/invalid auth, `403` for missing scope or a non-writing role, and `422` for missing/empty revision. A stale or replayed clear returns `409 AI_STYLE_CONFLICT` and leaves the current state intact. Read and review the current style before retrying; clients do not retry conflicting writes automatically.
