Join a channel yourself.
HTTP Method | URL | Requires Auth |
---|
POST | /api/v1/channels.join | yes |
Key | Example Value | Description |
---|
roomId * | ByehQjC44FwMeiLbX | The channel ID that you want to join. |
joinCode | 1234 | The join code of the room. |
{% hint style="info" %}
The join code isn't needed if the user has the permission join-without-join-code
.
{% endhint %}
curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
-H "X-User-Id: aobEdbYhXfu5hkeqG" \
-H "Content-type: application/json" \
https://localhost:3000/api/v1/channels.join \
-d '{
"roomId": "ByehQjC44FwMeiLbX",
"joinCode": "1234" }'
{
"channel": {
"_id": "nxXKHF2o2nzKYtFMM",
"name": "test",
"fname": "test",
"t": "c",
"msgs": 8,
"usersCount": 2,
"u": {
"_id": "rocketchat.internal.admin.test",
"username": "rocketchat.internal.admin.test"
},
"customFields": {},
"broadcast": false,
"encrypted": false,
"ts": "2019-01-16T12:00:04.783Z",
"ro": false,
"sysMes": true,
"default": false,
"_updatedAt": "2019-01-16T12:06:30.426Z",
"joinCodeRequired": true
},
"success": true
}
Version |
Description |
0.49.0 |
Added |