GET/channel-folders

조직/그룹/메시지방 폴더 목록을 조회한다.

Authorization

oauth2

OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.

Scope

file
file.read
group.folder
group.folder.read

HTTP Request

GEThttps://www.worksapis.com/v1.0/channel-folders

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
channelFolders array (ChannelFolderForList) 

채널 폴더 목록

 

ChannelFolderForList

PropertyTypeDescription
channelFolderId string 

조직/그룹/메시지방 폴더 ID


readOnly : true 
createdTime string 

생성 시간


format : date-time
readOnly : true 
name string 

이름


readOnly : true 
quota object (quota) 

채널 폴더 용량 정보

 

quota

PropertyTypeDescription
used integer 

사용량


format : int64
readOnly : true 

Response Example

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}