コラボレーションド メインの制限から除外されているユーザーのリストを返します。
1000
1000
返す項目の1ページあたりの最大数。
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii
結果が返される開始位置のマーカー。マーカーベースのページ割りを使用している場合に使用されます。
これを使用するには、usemarker
をtrue
に設定する必要があります。
除外するユーザーのコレクションを返します。
予期しないクライアントエラー。
curl -i -X GET "https://api.box.com/2.0/collaboration_whitelist_exempt_targets" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.collaborationAllowlistExemptTargets.getCollaborationWhitelistExemptTargets();
client.collaboration_allowlist_exempt_targets.get_collaboration_whitelist_exempt_targets()
await client.CollaborationAllowlistExemptTargets.GetCollaborationWhitelistExemptTargetsAsync();
BoxCollectionMarkerBased<BoxCollaborationWhitelistTargetEntry> = await client.CollaborationWhitelistManager
.GetAllCollaborationWhitelistExemptUsersAsync();
client.collaborationAllowlist.getAllExemptions(options, callback);
{
"entries": [
{
"created_at": "2012-12-12T10:53:43-08:00",
"enterprise": {
"id": "11446498",
"name": "Acme Inc.",
"type": "enterprise"
},
"id": "11446498",
"modified_at": "2012-12-12T10:53:43-08:00",
"type": "collaboration_whitelist_exempt_target",
"user": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
}
}
],
"limit": 1000,
"next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
"prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih"
}