action etmdb_filmography_searchall_read { label: "Return filmography search result" description: "Return filmography search result\n\n### Response Class (Status 200)\n__{param}__ argument can be\n* artist first name\n* artist last name\n* artist username\n* movie title or\n* filmography description (such as director, actor, producer, etc)\n\nFor more details on how filmographies are listed [see here][ref].\n[ref]: https://etmdb.com/en/movie-list/-updated_date" provider: etmdb method: GET path: "/api/v1/filmography/searchall/{param}" encoding: json input: { type: "object" properties: { param: { type: "string" } } required: ["param"] additionalProperties: false } output: { type: "object" additionalProperties: true } }