GET/bots/{botId}/channels/{channelId}/members
Gets a list of members of a message room with a bot included.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
bot.message
bot
bot.read
| Parameter | Type | Description |
|---|---|---|
| botId | integer | Bot ID required example : 2000001 format : int64 |
| channelId | string | Message room ID
required example : 12345a12-b12c-12d3-e123fghijkl |
| Parameter | Type | Description |
|---|---|---|
| count | integer | Number of items in a list default : 50 minimum : 1 maximum : 100 example : 60 format : int64 |
| cursor | string | Cursor value for pagination example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| members | array (string) | List of members |
| responseMetaData | object (responseMetaData) | Response metadata |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | Cursor value for pagination required |
example
1{2 "members": [3 "560dd110-b4f9-44a4-1322-04bac6fff134",4 "a3d99c51-62bd-4968-1390-041849ad14a5"5 ],6 "responseMetaData": {7 "nextCursor": "eyJjcmVhdGVkVGltZSI6MTYzOTY2ODU2NCwib2Zmc2V0IjoyLCJsaW1pdCI6Mr0="8 }9}