現在の会社内でコラボレーションを作成しても安全であると見なされているドメインのリストを返します。
1000
1000
返す項目の1ページあたりの最大数。
"JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii"
結果が返される開始位置のマーカー。マーカーベースのページ割りを使用している場合に使用されます。
これを使用するには、usemarker
をtrue
に設定する必要があります。
コラボレーションが許可されているドメインのコレクションを返します。
予期しないクライアントエラー。
curl -i -X GET "https://api.box.com/2.0/collaboration_whitelist_entries" \
-H "Authorization: Bearer <ACCESS_TOKEN>"
BoxCollectionMarkerBased<BoxCollaborationWhitelistEntry> whitelistedDomains = await client.CollaborationWhitelistManager
.GetAllCollaborationWhitelistEntriesAsync();
client.collaborationAllowlist.getAllAllowlistedDomains(callback);
{
"entries": [
{
"id": "11446498",
"type": "collaboration_whitelist_entry",
"domain": "example.com",
"direction": "both",
"enterprise": {
"id": "11446498",
"type": "enterprise",
"name": "Acme Inc."
},
"created_at": "2012-12-12T10:53:43-08:00"
}
],
"limit": 1000,
"next_marker": 3000,
"prev_marker": 1000
}