POST/bots/{botId}/channels
Bot を含むトークルームを登録する。
レスポンスのトークルーム ID を指定してメッセージを送信したり、Bot が所属するトークルームのユーザーリストを取得できる。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
bot.message
bot
| Parameter | Type | Description |
|---|---|---|
| botId | integer | Bot ID required example : 2000001 format : int64 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Content-Type | string | application/json required example : application/json |
| Property | Type | Description |
|---|---|---|
| members | array (string) | 招待するユーザー ID リスト required minItems : 1 maxItems : 100 uniqueItems : true |
| title | string | トークルーム名 maxLength : 1000 |
example
1{2 "members": [3 "d191e339-3299-44e6-7a44-04d9cb01a5e0"4 ],5 "title": "Example title"6}OK
| Property | Type | Description |
|---|---|---|
| channelId | string | トークルーム ID required |
| title | string | トークルーム名 maxLength : 1000 |
example
1{2 "channelId": "12345a12-b12c-12d3-e123fghijkl",3 "title": "Example title"4}