GET/groups/{groupId}/folder

Gets properties of a team/group folder.

Authorization

oauth2

OAuth 2.0 authentication.
For more information, see Authentication and Authorization.

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 

Team/group ID


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

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
createdTime string 

Creation date


readOnly : true 
name string 

First name


readOnly : true 
quota object (quota) 

Team/group folder size

 
trashEmptyCycle integer 

Frequency to automatically empty trash (in days)


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

quota

PropertyTypeDescription
trash integer 

Trash size


format : int64
readOnly : true 
used integer 

Used size


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}