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