action vimeo_get_album_logo { label: "Get a specific custom album logo" provider: vimeo method: GET path: "/users/{user_id}/albums/{album_id}/logos/{logo_id}" encoding: json input: { type: "object" properties: { album_id: { type: "number" } logo_id: { type: "number" } user_id: { type: "number" } } required: ["album_id", "logo_id", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }