action flickr_get_albums_by_person_id { label: "getAlbumsByPersonID" description: "Returns the albums belonging to the specified user" provider: flickr method: GET path: "/rest?method=flickr.photosets.getList" encoding: json input: { type: "object" properties: { api_key: { type: "string" } page: { type: "number" } per_page: { type: "number" } user_id: { type: "string" } } required: ["api_key", "user_id"] additionalProperties: false } output: { type: "object" properties: { page: { type: "number" } pages: { type: "number" } perpage: { type: "number" } photosets: { type: "array" items: { type: "object" properties: { can_comment: { type: "boolean" } count_comments: { type: "number" } count_views: { type: "number" } date_create: { type: "number" } date_update: { type: "number" } description: { type: "string" } farm: { type: "string" } id: { type: "string" } photos: { type: "number" } primary: { type: "string" } secret: { type: "string" } server: { type: "string" } title: { type: "string" } videos: { type: "number" } } } } total: { type: "number" } } } }