GET/channel-folders/{channelFolderId}

トークルームフォルダのフォルダプロパティを取得する。

Authorization

oauth2

Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。

Scope

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

HTTP Request

GEThttps://www.worksapis.com/v1.0/channel-folders/{channelFolderId}

Path Parameters

ParameterTypeDescription
channelFolderId string 

トークルームフォルダ ID


required
example : @900000014040402 

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
channelFolderId string 

トークルームフォルダ ID


readOnly : true 
createdTime string 

作成日時


readOnly : true 
name string 

名前


readOnly : true 
quota object (quota) 

トークルームフォルダ容量情報

 

quota

PropertyTypeDescription
trash integer 

ゴミ箱の容量


format : int64
readOnly : true 
used integer 

使用容量


format : int64
readOnly : true 

Response Example

example

1{2  "channelFolderId": "@900000014040402",3  "name": "folder",4  "createdTime": "2019-03-19T09:42:15+09:00",5  "quota": {6    "used": 161399890,7    "trash": 630864328  }9}