GET/bots/{botId}/channels/{channelId}
봇이 포함된 메시지방의 상세 정보를 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
bot.message
bot
bot.read
| Parameter | Type | Description |
|---|---|---|
| botId | integer | 봇 ID required example : 2000001 format : int64 |
| channelId | string | 메시지방 ID
required example : 12345a12-b12c-12d3-e123fghijkl |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| domainId | integer | 도메인 ID |
| channelId | string | 메시지방 ID |
| title | string | 메시지방 이름 maxLength : 1000 |
| channelType | object (channelType) |
| Property | Type | Description |
|---|---|---|
| type | string | 메시지방 타입
|
| orgUnitId | string | 조직 ID. 조직 메시지방인 경우에만 반환된다. |
| groupId | string | 그룹 ID. 그룹 메시지방인 경우에만 반환된다. |
example
1{2 "domainId": 10000001,3 "channelId": "12345a12-b12c-12d3-e123fghijkl",4 "title": "Example title",5 "channelType": {6 "type": "MULTI_USERS"7 }8}