GET/groups/{groupId}/folder/link-setting
組織/グループのリンク共有設定を取得する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
file
file.read
group.folder
group.folder.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | 組織/グループの ID (URL エンコードする)
required example : group127-8545-4463-603b-04d550d23bf |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| enabledOrganizationAccessType | boolean | ORGANIZATION: 社内メンバーのみアクセス可能なリンクの利用可否 |
| enabledSpecificPeopleAccessType | boolean | SPECIFIC_PEOPLE: 許可した人のみアクセス可能 (OTP 認証) なリンクの利用可否 |
| enabledAnyoneAccessType | boolean | ANYONE: 誰でもアクセス可能なリンクの利用可否 |
| maxLinkRetentionDays | integer | リンクの有効期限の最大値。
Allowed values : -1, 7, 30, 90, 180 |
example
1{2 "enabledOrganizationAccessType": true,3 "enabledSpecificPeopleAccessType": true,4 "enabledAnyoneAccessType": false,5 "maxLinkRetentionDays": 306}