action vimeo_get_album_logos { label: "Get all the custom logos of an album" provider: vimeo method: GET path: "/users/{user_id}/albums/{album_id}/logos" encoding: json input: { type: "object" properties: { album_id: { type: "number" } page: { type: "number" } per_page: { type: "number" } user_id: { type: "number" } } required: ["album_id", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }