action vimeo_get_vod_purchases { label: "Get all the On Demand purchases and rentals that a user has made" provider: vimeo method: GET path: "/me/ondemand/purchases" encoding: json input: { type: "object" properties: { direction: { type: "string" enum: ["asc", "desc"] } filter: { type: "string" enum: ["all", "expiring_soon", "film", "important", "purchased", "rented", "series", "subscription", "unwatched", "watched"] } page: { type: "number" } per_page: { type: "number" } sort: { type: "string" enum: ["added", "alphabetical", "date", "name", "purchase_time", "rating", "release_date"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }