GET/groups/{groupId}/folder
Gets properties of a team/group folder.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
file
file.read
group.folder
group.folder.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | Team/group ID required example : group127-8545-4463-603b-04d550d23bf |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| 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 |
| Property | Type | Description |
|---|---|---|
| trash | integer | Trash size format : int64 readOnly : true |
| used | integer | Used size format : int64 readOnly : true |
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}