A beta version of the new Box developer documentation site is launching soon! Updated Developer Guides, modern API Reference, and AI-powered search are on the way to help you build with Box faster. Stay tuned for more updates.
Returns a users who has been exempt from the collaboration domain restrictions.
984923The ID of the exemption to the list.
Returns the user's exempted from the list of collaboration domains.
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/collaboration_whitelist_exempt_targets/984923" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.collaborationAllowlistExemptTargets.getCollaborationWhitelistExemptTargetById(
newExemptTarget.id!,
);client.collaboration_allowlist_exempt_targets.get_collaboration_whitelist_exempt_target_by_id(
new_exempt_target.id
)await client.CollaborationAllowlistExemptTargets.GetCollaborationWhitelistExemptTargetByIdAsync(collaborationWhitelistExemptTargetId: NullableUtils.Unwrap(newExemptTarget.Id));try await client.collaborationAllowlistExemptTargets.getCollaborationWhitelistExemptTargetById(collaborationWhitelistExemptTargetId: newExemptTarget.id!)client.getCollaborationAllowlistExemptTargets().getCollaborationWhitelistExemptTargetById(newExemptTarget.getId())string exemptionID = "33333";
BoxCollaborationWhitelistTargetEntry exemptUser = await client.CollaborationWhitelistManager
.GetCollaborationWhitelistExemptUserAsync(exemptionID);client.collaborationAllowlist.getExemption(`12345`, callback);{
"id": "11446498",
"type": "collaboration_whitelist_exempt_target",
"created_at": "2012-12-12T10:53:43-08:00",
"enterprise": {
"id": "11446498",
"type": "enterprise",
"name": "Acme Inc."
},
"modified_at": "2012-12-12T10:53:43-08:00",
"user": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
}
}