action hillbillysoftware_episodes_by_season_get { label: "Gets list of episodes for specified imdbID and Season number" provider: hillbillysoftware method: GET path: "/Episodes/BySeason/{AccessToken}/{ID}/{Season}" encoding: json input: { type: "object" properties: { AccessToken: { type: "string" } ID: { type: "string" } Season: { type: "string" } } required: ["AccessToken", "ID", "Season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }