---
title: "Update a mention"
description: "The one write on a mention. Set status to ignored or done to handle it (open puts it back), assign it to a workspace member, snooze it out of the feed, leave an internal note, or correct the classifier: `relevant` true or false is your verdict (relevance becomes 100 or 0, and every list, filter, digest and report follows it), `sentiment` replaces the label; null withdraws a verdict and restores the classifier's value. Omitted fields are untouched. Delivery and billing never change."
canonical: https://docs.mentio.dev/api/mentions/update-mention
markdown: https://docs.mentio.dev/api/mentions/update-mention.mdx
---

# Update a mention

`PATCH /v1/mentions/{id}`

The one write on a mention. Set status to ignored or done to handle it (open puts it back), assign it to a workspace member, snooze it out of the feed, leave an internal note, or correct the classifier: `relevant` true or false is your verdict (relevance becomes 100 or 0, and every list, filter, digest and report follows it), `sentiment` replaces the label; null withdraws a verdict and restores the classifier's value. Omitted fields are untouched. Delivery and billing never change.

## Parameters

- `id` (path, required): Mention id (mm_...).

## Body

- `status`: ignored or done to handle it; open to put it back.
- `assigneeId`: A workspace member (user id), or null to unassign.
- `snoozedUntil`: ISO 8601 (or epoch ms) until which the mention leaves the feed; null wakes it.
- `note`: Internal note; null or empty clears it.
- `relevant`: Your verdict on relevance, correcting the classifier: true sets relevance to 100 and puts a filtered mention back in the relevant feed, false sets it to 0 and takes it out; null withdraws the verdict and restores the classifier's score. Never billed or unbilled. A mention still being classified answers 409 classification_pending.
- `sentiment`: Your corrected sentiment; null withdraws the correction and restores the classifier's.

## Responses

- 200: The updated mention
- 400: Assignee is not a member of this organization
- 401: Missing or invalid API key
- 404: Mention not found
- 409: A verdict on a mention the classifier has not scored yet (classification_pending)

Full schemas: https://api.mentio.dev/v1/openapi.json. Conventions: https://docs.mentio.dev/conventions.mdx
