コラボレーションホワイトリスト除外対象のリストを取得

get
https://api.box.com/2.0
/collaboration_whitelist_exempt_targets

コラボレーションホワイトリストから除外されているユーザーのリストを返します。

リクエスト

application/json

クエリパラメータ

integer / int64クエリ内省略可能
10001000

返す項目の1ページあたりの最大数。

stringクエリ内省略可能
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii

結果が返される開始位置のマーカー。マーカーベースのページ割りを使用している場合に使用されます。

これを使用するには、usemarkertrueに設定する必要があります。

レスポンス

コラボレーションホワイトリスト例外のコレクションを返します。

予期しないクライアントエラー。

get
コラボレーションホワイトリスト除外対象のリストを取得
このドキュメント内で一部のAPIを試せるようになりました。
ログイン

リクエストの例

cURL
curl -X GET https://api.box.com/2.0/collaboration_whitelist_exempt_targets \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
.NET
BoxCollectionMarkerBased<BoxCollaborationWhitelistTargetEntry> = await client.CollaborationWhitelistManager
    .GetAllCollaborationWhitelistExemptUsersAsync();
Java
BoxCollaborationWhitelistExemptTarget.getAll(api);
Python
exemptions = client.collaboration_whitelist().get_exemptions()
for exemption in exemptions:
    print('{0} (ID: {1}) is exempt from the collaboration whitelist'.format(exemption.user.name, exemption.user.id))
Node
client.colllaborationWhitelists.getAllExemptions(options, callback);