action box_get_groups_id_collaborations { label: "List group collaborations" description: "Retrieves all the collaborations for a group. The user\nmust have admin permissions to inspect enterprise's groups.\n\nEach collaboration object has details on which files or\nfolders the group has access to and with what role." provider: box method: GET path: "/groups/{group_id}/collaborations" encoding: json input: { type: "object" properties: { group_id: { type: "string" } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } required: ["group_id"] additionalProperties: false } output: { type: "object" description: "A list of collaborations" } }