GET/channel-folders
Get a list of channel folders.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
file
file.read
group.folder
group.folder.read
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| channelFolders | array (ChannelFolder) | Channel folder list |
| Property | Type | Description |
|---|---|---|
| channelFolderId | string | orgunit/group/messageroom Folder ID readOnly : true |
| createdTime | string | Creation time readOnly : true |
| name | string | Name readOnly : true |
| quota | object (quota) | Capacity information |
| Property | Type | Description |
|---|---|---|
| used | integer | Used size 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}