List collaboration whitelist exempt target

get
https://api.box.com/2.0
/collaboration_whitelist_exempt_targets

Returns a list of users who have been exempt from the collaboration whitelist.

Request

application/json

Query Parameters

integer / int64in queryoptional
10001000

The maximum number of items to return per page.

stringin queryoptional
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.

Response

Returns a collection of collaboration whitelist exemptions.

application/jsonClient error

An unexpected client error.

get
List collaboration whitelist exempt target
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -X GET https://api.box.com/2.0/collaboration_whitelist_exempt_targets \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
.NET
BoxCollectionMarkerBased<BoxCollaborationWhitelistTargetEntry> = await client.CollaborationWhitelistManager
    .GetAllCollaborationWhitelistExemptUsersAsync();
Java
BoxCollaborationWhitelistExemptTarget.getAll(api);
Python
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))
Node
client.colllaborationWhitelists.getAllExemptions(options, callback);