GET/channel-folders/{channelFolderId}
조직/그룹/메시지방 폴더의 속성을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
file
file.read
group.folder
group.folder.read
| Parameter | Type | Description |
|---|---|---|
| channelFolderId | string | 조직/그룹/메시지방 폴더 ID required example : @900000014040402 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| channelFolderId | string | 조직/그룹/메시지방 폴더 ID readOnly : true |
| createdTime | string | 생성 시간 format : date-time readOnly : true |
| name | string | 이름 readOnly : true |
| quota | object (quota) | 채널 폴더 용량 정보 |
| Property | Type | Description |
|---|---|---|
| trash | integer | 휴지통 용량 format : int64 readOnly : true |
| used | integer | 사용량 format : int64 readOnly : true |
example
1{2 "channelFolderId": "@900000014040402",3 "name": "folder",4 "createdTime": "2019-03-19T09:42:15+09:00",5 "quota": {6 "used": 161399890,7 "trash": 630864328 }9}