action box_get_folders_id_collaborations { label: "List folder collaborations" description: "Retrieves a list of pending and active collaborations for a\nfolder. This returns all the users that have access to the folder\nor have been invited to the folder." provider: box method: GET path: "/folders/{folder_id}/collaborations" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } folder_id: { type: "string" } } required: ["folder_id"] additionalProperties: false } output: { type: "object" description: "A list of collaborations" } }