action vimeo_get_vod_region { label: "Get a specific region of an On Demand page" description: "Checks whether an On Demand page belongs to a region." provider: vimeo method: GET path: "/ondemand/pages/{ondemand_id}/regions/{country}" encoding: json input: { type: "object" properties: { country: { type: "string" } ondemand_id: { type: "number" } } required: ["country", "ondemand_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }