action vimeo_get_vod_promotion_codes { label: "Get all the codes of a promotion on an On Demand page" provider: vimeo method: GET path: "/ondemand/pages/{ondemand_id}/promotions/{promotion_id}/codes" encoding: json input: { type: "object" properties: { ondemand_id: { type: "number" } page: { type: "number" } per_page: { type: "number" } promotion_id: { type: "number" } } required: ["ondemand_id", "promotion_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }