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

# conversations_join

> Join a public channel. Joining one the bot is already in succeeds with a warning.

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

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

result = await slack.conversations_join.ainvoke({"channel": ...})
```

<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          |
  | --------------------------------------------------------------- | -------- | -------------------- |
  | `channel` <span className="required" title="required">\*</span> | `string` | The channel to join. |
</div>
