List allowed domains for collaboration
List allowed domains for collaboration
Listing the domains that are allowed for collaboration will return all domains that permit collaborations to be created with the current enterprise.
There are no required parameters for the request, but limit
and market
parameters may optionally be set to limit and page through the full result set.
cURL
curl -i -X GET "https://api.box.com/2.0/collaboration_whitelist_entries" \
-H "authorization: Bearer <ACCESS_TOKEN>"
Node/TypeScript v10
await client.collaborationAllowlistEntries.getCollaborationWhitelistEntries();
Python v10
client.collaboration_allowlist_entries.get_collaboration_whitelist_entries()
.NET v10
await client.CollaborationAllowlistEntries.GetCollaborationWhitelistEntriesAsync();
Swift v10
try await client.collaborationAllowlistEntries.getCollaborationWhitelistEntries()
Java v10
client.getCollaborationAllowlistEntries().getCollaborationWhitelistEntries()
.NET v5
BoxCollectionMarkerBased<BoxCollaborationWhitelistEntry> whitelistedDomains = await client.CollaborationWhitelistManager
.GetAllCollaborationWhitelistEntriesAsync();
Node v3
client.collaborationAllowlist.getAllAllowlistedDomains(callback);