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

# reactions_remove

> Take an emoji reaction off a Slack message.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"https://slack.com/api/reactions.remove"}</code></div>

```python slack_reactions_remove.py theme={null}
from charter.packs import slack

result = await slack.reactions_remove.ainvoke({"name": ..., "channel": ..., "timestamp": ...})
```

<Note>
  Requires `chat:write`, `channels:read`, `groups:read`, `im:read`, `mpim:read`, `channels:history`, `groups:history`, `im:history`, `mpim:history`, `users:read`, `reactions:write`.
</Note>

## Body

<div className="reference-table">
  | Field                                                             | Type     | Description                                        |
  | ----------------------------------------------------------------- | -------- | -------------------------------------------------- |
  | `name` <span className="required" title="required">\*</span>      | `string` | Reaction (emoji) name, without surrounding colons. |
  | `channel` <span className="required" title="required">\*</span>   | `string` | Channel where the reacted-to message was posted.   |
  | `timestamp` <span className="required" title="required">\*</span> | `string` | Timestamp of the message to take the reaction off. |
</div>
