GET/channel-folders
トークルームフォルダのリストを取得する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
file
file.read
group.folder
group.folder.read
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| channelFolders | array (ChannelFolder) | トークルームフォルダ リスト |
| Property | Type | Description |
|---|---|---|
| channelFolderId | string | トークルームフォルダ ID readOnly : true |
| createdTime | string | 作成日時 readOnly : true |
| name | string | 名前 readOnly : true |
| quota | object (quota) | 容量情報 |
| Property | Type | Description |
|---|---|---|
| used | integer | 使用容量 format : int64 readOnly : true |
example
1{2 "channelFolders": [3 {4 "channelFolderId": "@900000014040402",5 "name": "folder",6 "createdTime": "2019-03-19T09:42:15+09:00",7 "quota": {8 "used": 1613998909 }10 }11 ]12}