GET/groups/{groupId}/folder/trash-files
조직/그룹 폴더의 휴지통 파일 목록을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
file
file.read
group.folder
group.folder.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | 조직/그룹 ID required example : group127-8545-4463-603b-04d550d23bf |
| Parameter | Type | Description |
|---|---|---|
| orderBy | string | 정렬 방법. 정렬 항목과 순서를 공백(%20)으로 구분하여 입력한다. 예) createdTime%20desc
example : createdTime%20desc |
| count | integer | 조회 개수 default : 20 minimum : 1 maximum : 200 example : 20 format : int32 |
| cursor | string | 커서값 example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== allowReserved : false |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| trashFiles | array (TrashFile) | 휴지통 파일 정보 |
| responseMetaData | object (responseMetaData) | 응답 메타데이터 |
| Property | Type | Description |
|---|---|---|
| deletedTime | string | 삭제 날짜 readOnly : true |
| deleteUser | string | 삭제한 사용자 readOnly : true |
| fileName | string | 파일 이름 readOnly : true |
| fileSize | integer | 파일 크기 format : int64 readOnly : true |
| fileType | string | 파일 유형
Allowed values : AUDIO, DOC, ETC, EXE, FOLDER, IMAGE, VIDEO, ZIP |
| originalPath | string | 삭제 전 경로 readOnly : true |
| resourceLocation | integer | 리소스 위치 코드 format : int32 readOnly : true |
| trashFileId | string | 삭제 파일 ID readOnly : true |
| modifiedTime | string | 수정 날짜 readOnly : true |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 목록 조회 시 사용하는 커서값 readOnly : true |
example
1{2 "trashFiles": [3 {4 "trashFileId": "MTQ1MDMwMDJ8MTQ1Mjk0NDU1Mjk3NnxGfDA",5 "fileName": "works.txt",6 "resourceLocation": 24101,7 "fileSize": 1048576,8 "fileType": "DOC",9 "originalPath": "/worksFolder/",10 "modifiedTime": "2021-08-14T11:06:39.39+09:00",11 "deletedTime": "2021-08-14T11:06:40.40+09:00",12 "deleteUser": "userf7da-f82c-4284-13e7-030f3b4c756x"13 },14 {15 "trashFileId": "MTEwMDAyNTA0NjQ1ODQ5fDM0NzI0NzM3OTg1ODg1NDgzNjB8Rnww",16 "fileName": "DeletedFolder",17 "resourceLocation": 24101,18 "fileSize": 0,19 "fileType": "FOLDER",20 "originalPath": "/",21 "modifiedTime": "2021-08-14T11:06:39.39+09:00",22 "deletedTime": "2021-08-14T11:06:40.40+09:00",23 "deleteUser": "userf7da-f82c-4284-13e7-030f3b4c756x"24 }25 ],26 "responseMetaData": {27 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="28 }29}