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

> Add people to a channel. With `force` set, Slack adds everyone it can and reports the rest alongside a success, so read the result.

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

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

result = await slack.conversations_invite.ainvoke({"channel": ..., "users": ...})
```

<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 invite people to.                                                           |
  | `users` <span className="required" title="required">\*</span>   | `string`  | Comma-separated user IDs, up to a thousand.                                                |
  | `force`                                                         | `boolean` | Invite everyone who can be invited rather than failing the whole call on the first bad id. |
</div>
