GET/bots/{botId}/channels/{channelId}
Gets the details of a message room with a specified 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 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| domainId | integer | Domain ID |
| channelId | string | Message room ID |
| title | string | Message room name maxLength : 1000 |
| channelType | object (channelType) |
| Property | Type | Description |
|---|---|---|
| type | string | Message room type
|
| orgUnitId | string | Team ID. It is returned only for a team message room. |
| groupId | string | Group ID. It is returned only for a group message room. |
example
1{2 "domainId": 10000001,3 "channelId": "12345a12-b12c-12d3-e123fghijkl",4 "title": "Example title",5 "channelType": {6 "type": "MULTI_USERS"7 }8}