action vimeo_get_album_video { label: "Get a specific video in an album" description: "This method gets a single video from an album. You can use this method to determine whether the album contains the specified video." provider: vimeo method: GET path: "/users/{user_id}/albums/{album_id}/videos/{video_id}" encoding: json input: { type: "object" properties: { album_id: { type: "number" } password: { type: "string" } user_id: { type: "number" } video_id: { type: "number" } } required: ["album_id", "user_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }