Returns a list of users who have been exempt from the collaboration whitelist.
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 exemptions.
An unexpected client error.
curl -X GET https://api.box.com/2.0/collaboration_whitelist_exempt_targets \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
BoxCollectionMarkerBased<BoxCollaborationWhitelistTargetEntry> = await client.CollaborationWhitelistManager
.GetAllCollaborationWhitelistExemptUsersAsync();
BoxCollaborationWhitelistExemptTarget.getAll(api);
exemptions = client.collaboration_whitelist().get_exemptions()
for exemption in exemptions:
print('{0} (ID: {1}) is exempt from the collaboration whitelist'.format(exemption.user.name, exemption.user.id))
client.colllaborationWhitelists.getAllExemptions(options, callback);