action vimeo_get_channel_video { label: "Get a specific video in a channel" description: "This method returns a specific video in a channel. You can use it to determine whether the video is in the channel." provider: vimeo method: GET path: "/channels/{channel_id}/videos/{video_id}" encoding: json input: { type: "object" properties: { channel_id: { type: "number" } video_id: { type: "number" } } required: ["channel_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }