Get collaboration whitelist exempt target

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

Returns a users who has been exempt from the collaboration whitelist.

Request

application/json

Path Parameters

984923

The ID of the collaboration whitelist exemption

Response

Returns a collaboration whitelist exemption.

application/jsonClient error

An unexpected client error.

get
Get 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/984923 \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
.NET
string exemptionID = "33333";
BoxCollaborationWhitelistTargetEntry exemptUser = await client.CollaborationWhitelistManager
    .GetCollaborationWhitelistExemptUserAsync(exemptionID);
Java
BoxCollaborationWhitelistExemptTarget userWhitelist = new BoxCollaborationWhitelistExemptTarget(api, "whitelistID");
userWhitelist.getInfo();
Python
exemption_id = '11111'
exemption = client.collaboration_whitelist_exempt_target(exemption_id).get()
Node
client.collaborationWhitelist.getExemption(`12345`, callback);