action box_get_collaboration_whitelist_exempt_targets_id { label: "Get user exempt from collaboration domain restrictions" description: "Returns a users who has been exempt from the collaboration\ndomain restrictions." provider: box method: GET path: "/collaboration_whitelist_exempt_targets/{collaboration_whitelist_exempt_target_id}" encoding: json input: { type: "object" properties: { collaboration_whitelist_exempt_target_id: { type: "string" } } required: ["collaboration_whitelist_exempt_target_id"] additionalProperties: false } output: { type: "object" description: "The user that is exempt from any of the restrictions\nimposed by the list of allowed collaboration domains for this enterprise." properties: { created_at: { type: "string" format: "date-time" description: "The time the entry was created" } enterprise: { type: "object" } id: { type: "string" description: "The unique identifier for this exemption" } modified_at: { type: "string" format: "date-time" description: "The time the entry was modified" } type: { type: "string" description: "`collaboration_whitelist`" enum: ["collaboration_whitelist"] } user: { type: "object" } } } }