GET/groups/{groupId}/folder

조직/그룹 폴더의 속성을 조회한다.

Authorization

oauth2

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

Scope

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

HTTP Request

GEThttps://www.worksapis.com/v1.0/groups/{groupId}/folder

Path Parameters

ParameterTypeDescription
groupId string 

조직/그룹 ID


required
example : group127-8545-4463-603b-04d550d23bf 

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
createdTime string 

생성 날짜


readOnly : true 
name string 

이름


readOnly : true 
quota object (quota) 

조직/그룹 폴더 용량 정보

 
trashEmptyCycle integer 

휴지통 자동 삭제 주기(단위: 일)


minimum : 0
maximum : 50
format : int32
readOnly : true 

quota

PropertyTypeDescription
trash integer 

휴지통 용량


format : int64
readOnly : true 
used integer 

사용 용량


format : int64
readOnly : true 

Response Example

example

1{2  "name": "folder",3  "createdTime": "2019-03-19T09:42:15.15+09:00",4  "quota": {5    "used": 161399890,6    "trash": 630864327  },8  "trashEmptyCycle": 09}