> 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/v1/reference/actions-processor/actions_overview/channelleaveanon.md).

# channelLeaveAnon

Removes users from anonymous channel.

#### Function Action Object

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

### Example

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