Returns a users who has been exempt from the collaboration whitelist.
984923
The ID of the collaboration whitelist exemption
Returns a collaboration whitelist exemption.
An unexpected client error.
curl -X GET https://api.box.com/2.0/collaboration_whitelist_exempt_targets/984923 \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
string exemptionID = "33333";
BoxCollaborationWhitelistTargetEntry exemptUser = await client.CollaborationWhitelistManager
.GetCollaborationWhitelistExemptUserAsync(exemptionID);
BoxCollaborationWhitelistExemptTarget userWhitelist = new BoxCollaborationWhitelistExemptTarget(api, "whitelistID");
userWhitelist.getInfo();
exemption_id = '11111'
exemption = client.collaboration_whitelist_exempt_target(exemption_id).get()
client.collaborationWhitelist.getExemption(`12345`, callback);