action box_get_collaborations { label: "List pending collaborations" description: "Retrieves all pending collaboration invites for this user." provider: box method: GET path: "/collaborations" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } status: { type: "string" enum: ["pending"] } } required: ["status"] additionalProperties: false } output: { type: "object" description: "A list of collaborations" } }