action box_get_collaboration_whitelist_entries_id { label: "Get allowed collaboration domain" description: "Returns a domain that has been deemed safe to create collaborations\nfor within the current enterprise." provider: box method: GET path: "/collaboration_whitelist_entries/{collaboration_whitelist_entry_id}" encoding: json input: { type: "object" properties: { collaboration_whitelist_entry_id: { type: "string" } } required: ["collaboration_whitelist_entry_id"] additionalProperties: false } output: { type: "object" description: "An entry that describes an approved domain for which users can collaborate\nwith files and folders in your enterprise or vice versa." properties: { created_at: { type: "string" format: "date-time" description: "The time the entry was created at" } direction: { type: "string" description: "The direction of the collaborations to allow." enum: ["inbound", "outbound", "both"] } domain: { type: "string" description: "The whitelisted domain" } enterprise: { type: "object" } id: { type: "string" description: "The unique identifier for this entry" } type: { type: "string" description: "`collaboration_whitelist_entry`" enum: ["collaboration_whitelist_entry"] } } } }