以前コラボレーションが許可されたドメインの削除
以前コラボレーションが許可されたドメインの削除
コラボレーションの 許可されたドメインのリストからドメインを削除すると、自分の会社とそのドメイン内のユーザーとの間にコラボレーションを作成できなくなります。
許可リストからドメインを削除するには、リストのエントリのIDを削除リクエストに指定します。このIDは、新しいドメインを許可するか社内で許可されているドメインのリストを取得すると返されます。
cURL
curl -i -X DELETE "https://api.box.com/2.0/collaboration_whitelist_entries/213123" \
-H "authorization: Bearer <ACCESS_TOKEN>"
TypeScript Gen
await client.collaborationAllowlistEntries.deleteCollaborationWhitelistEntryById(
entry.id!,
);
Python Gen
client.collaboration_allowlist_entries.delete_collaboration_whitelist_entry_by_id(
entry.id
)
.NET Gen
await client.CollaborationAllowlistEntries.DeleteCollaborationWhitelistEntryByIdAsync(collaborationWhitelistEntryId: NullableUtils.Unwrap(entry.Id));
.NET
string entryID = "11111";
await client.CollaborationWhitelistManager.DeleteCollaborationWhitelistEntryAsync(entryID);
Node
client.collaborationAllowlist.removeDomain('12345', callback);