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>"
TypeScript Gen
await client.collaborationAllowlistEntries.getCollaborationWhitelistEntries();
Python Gen
client.collaboration_allowlist_entries.get_collaboration_whitelist_entries()
.NET Gen
await client.CollaborationAllowlistEntries.GetCollaborationWhitelistEntriesAsync();
.NET
BoxCollectionMarkerBased<BoxCollaborationWhitelistEntry> whitelistedDomains = await client.CollaborationWhitelistManager
    .GetAllCollaborationWhitelistEntriesAsync();
Node
client.collaborationAllowlist.getAllAllowlistedDomains(callback);