The line that forms the URL of the endpoint:
url = "{}/api/movie".format(baseurl)
Should be:
url = "{}/api/v3/movie".format(baseurl)
For the latest versions of Radarr. This currently results in the user getting a "failed to connect to Radarr" message, when all of the settings are actually correct in the config.ini file.
The team here needs to decide if this needs some type of variable for the version of Radarr the user is running, or just to assume the latest version and patch this in.
The line that forms the URL of the endpoint: url = "{}/api/movie".format(baseurl)
Should be: url = "{}/api/v3/movie".format(baseurl)
For the latest versions of Radarr. This currently results in the user getting a "failed to connect to Radarr" message, when all of the settings are actually correct in the config.ini file.
The team here needs to decide if this needs some type of variable for the version of Radarr the user is running, or just to assume the latest version and patch this in.