Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Removes a user's exemption from the restrictions set out by the allowed list of domains for collaborations.
984923
The ID of the exemption to the list.
A blank response is returned if the exemption was successfully deleted.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/collaboration_whitelist_exempt_targets/984923" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.collaborationAllowlistExemptTargets.deleteCollaborationWhitelistExemptTargetById(
exemptTarget.id!,
);
client.collaboration_allowlist_exempt_targets.delete_collaboration_whitelist_exempt_target_by_id(
exempt_target.id
)
await client.CollaborationAllowlistExemptTargets.DeleteCollaborationWhitelistExemptTargetByIdAsync(collaborationWhitelistExemptTargetId: NullableUtils.Unwrap(exemptTarget.Id));
try await client.collaborationAllowlistExemptTargets.deleteCollaborationWhitelistExemptTargetById(collaborationWhitelistExemptTargetId: exemptTarget.id!)
client.collaborationAllowlist.removeExemption('12345678', callback);