> For the complete documentation index, see [llms.txt](https://docs.klai.studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.klai.studio/reference/actions-processor/actions_overview/channeljoinanonymous.md).

# channelJoinAnon

Adds users to anonymous channel.

#### Function Action Object

| Key             | value             | Description  |
| --------------- | ----------------- | ------------ |
| action          | 'channelJoinAnon' | Action name  |
| options.channel | {string}          | Channel name |

### Example

```yaml
// This will join a user to "chatRoom"
[
  {
    "action": "channelJoinAnon",
    "options": {
      "channel": "chatRoom"
    }
  }
]
```
