Create whitelist exempt target

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

Creates a collaboration whitelist entry exemption, specifying a user that is exempted from the whitelist.

Request

application/json

Request Body

objectin body

The user to exempt.

stringnulloptional
23522323

The ID of the user to exempt.

Response

Returns a new collaboration whitelist entry.

application/jsonClient error

An unexpected client error.

post
Create 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 POST https://api.box.com/2.0/collaboration_whitelist_exempt_targets \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
     -H 'Content-Type: application/json" '
     -d '{
       "user": {
         "id": "23522323"
       }
     }'
.NET
string userId = "22222";
BoxCollaborationWhitelistTargetEntry exemptUser = await client.CollaborationWhitelistManager
    .AddCollaborationWhitelistExemptUserAsync(userId);
Java
String userID = "12345";
BoxCollaborationWhitelistExemptTarget.create(api, userID);
Python
user = client.user(user_id='11111')
exemption = client.collaboration_whitelist().add_exemption(user)
Node
client.collaborationWhitelist.addExemption('5678', callback);