Deletes a specific collaboration whitelist exemption.
984923
The ID of the collaboration whitelist exemption
A blank response is returned if the exemption was successfully deleted.
An unexpected client error.
curl -X DELETE https://api.box.com/2.0/collaboration_whitelist_exempt_targets/984923 \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
BoxCollaborationWhitelistExemptTarget userWhitelist = new BoxCollaborationWhitelistExemptTarget(api, "whitelist_id")
userWhitelist.delete();
client.collaboration_whitelist_exempt_target(exemption_id='22222').delete()
client.collaborationWhitelist.removeExemption('12345678', callback);