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

# Remove Reaction • AI Agent SDK

> remove_reaction: Remove a reaction emoji from a message.

# remove\_reaction

<div className="flex items-center gap-2">
  <Badge color="blue">Async</Badge>
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**BotProtocol**](../classes/BotProtocol) class in the [**protocols**](../modules/protocols) module.

Remove a reaction emoji from a message.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
async def remove_reaction(channel_id: str, message_id: str, emoji: str) -> bool
```

## Parameters

<ParamField query="channel_id" type="str" required={true}>
  Channel containing the message
</ParamField>

<ParamField query="message_id" type="str" required={true}>
  Message to remove reaction from
</ParamField>

<ParamField query="emoji" type="str" required={true}>
  Emoji to remove
</ParamField>

### Returns

<ResponseField name="Returns" type="bool">
  True if reaction was removed successfully
</ResponseField>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/bots/protocols.py#L1012">
  `praisonaiagents/bots/protocols.py` at line 1012
</Card>
