Returns the list of whitelist entries which specify what domains can collaborate with the current enterprise.
1000
1000
The maximum number of items to return per page.
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii
Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination.
This requires usemarker
to be set to true
.
Returns a collection of collaboration whitelist entries.
An unexpected client error.
curl -X GET https://api.box.com/2.0/collaboration_whitelist_entries \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
BoxCollectionMarkerBased<BoxCollaborationWhitelistEntry> whitelistedDomains = await client.CollaborationWhitelistManager
.GetAllCollaborationWhitelistEntriesAsync();
BoxCollaborationWhitelist.getAll(api);
whitelist_entries = client.collaboration_whitelist().get_entries()
for entry in whitelist_entries:
direction = entry.direction if entry.direction != 'both' else 'bidirectional'
print('Domain {0} is whitelisted for {1} collaboration'.format(entry.domain, direction))
client.collaborationWhitelist.getAllWhitelistedDomains(callback);