action hillbillysoftware_tvshow_id_get { label: "Returns TVShow information based on IMDBid" provider: hillbillysoftware method: GET path: "/TV/ByID/{accesstoken}/{imdbID}" encoding: json input: { type: "object" properties: { accesstoken: { type: "string" } id: { type: "string" } imdbID: { type: "string" } } required: ["accesstoken", "id", "imdbID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }