GET/sharedrives/{sharedriveId}/files/{fileId}/revisions/{revisionId}
공용 드라이브(공용 폴더)의 파일 버전 속성을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
file
file.read
| Parameter | Type | Description |
|---|---|---|
| sharedriveId | string | 공용 드라이브 ID required example : @2101000000000008 |
| fileId | string | 파일 ID required example : NzExNTMwMDF8MTQ2NzA1NjAxMDAwMHxGfDA |
| revisionId | string | 버전 ID required example : 0 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| createdTime | 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 |
| revisionId | string | 버전 ID readOnly : true |
| modifiedTime | string | 수정 날짜 readOnly : true |
| updateUser | string | 수정한 사용자의 ID readOnly : true |
example
1{2 "revisionId": "0",3 "resourceLocation": 24101,4 "fileSize": 52255,5 "fileType": "IMAGE",6 "originalPath": "N:/worksFolder/mobile-18_jpeg.jpeg",7 "createdTime": "2017-06-22T10:50:59.59+09:00",8 "modifiedTime": "2017-05-11T18:31:20.20+09:00",9 "updateUser": "userf7da-f82c-4284-13e7-030f3b4c756x"10}