Create Channels
Creates a public channel.
Requirements
| Logged In | Permission | Setting |
| — | — | — |
| Yes | create-c
| none |
Payload
- String - name of the channel
- Array of strings - usernames of the people to add to the channel when it is created. This can be empty and only the caller of the method will be a member of the channel.
- Boolean - whether the channel is read only or not
Example Call
{
"msg": "method",
"method": "createChannel",
"id": "85",
"params": [
"channel-name",
["array-of-usernames", "who-are-in-the-channel"],
true/false
]
}
Example Response
The response will be an object with one property rid
which is the id of the newly created room.
{
"msg": "result",
"id": "85",
"result": [
{ "rid": "BBkfgYT2azf7RPTTg" }
]
}