action box_get_files_id_collaborations { label: "List file collaborations" description: "Retrieves a list of pending and active collaborations for a\nfile. This returns all the users that have access to the file\nor have been invited to the file." provider: box method: GET path: "/files/{file_id}/collaborations" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } file_id: { type: "string" } limit: { type: "integer" format: "int64" } marker: { type: "string" } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "A list of collaborations" } }