action etmdb_people_search_read { label: "Return cast search result" description: "Return cast 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\nFor more details on how cast are listed [see here][ref].\n[ref]: https://etmdb.com/en/cast-list/-updated_date" provider: etmdb method: GET path: "/api/v1/people/search/{user}" encoding: json input: { type: "object" properties: { user: { type: "string" } } required: ["user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }