Hit the refresh activity queue by api

Sonarr version (exact version): 4.0.13.2932
OS: Docker on Linux Mint
Debug logs: N/A
Description of issue: I’m trying to make a download client (qbitorrent) notify sonarr when a download finishes, since the download client allows me to execute a script when this event happens, I’m trying to do a http request to the sonarr api asking to refresh the activity queue when a download finishes.

This is my current script and it works great

curl -X POST “http://–ip–/api/v3/command”
-H “X-Api-Key: --apiKey–>”
-H “Content-Type: application/json”
-d ‘{“name”: “RefreshSeries”}’

My problem is that I can’t find the method I need for this, “RefreshSeries” was the closer one I could find and this is the equivalent of clicking the “Update All” button on the Series section, I need the “Refresh” button on the Activity section.

Any ideas?
any help is appreciated, thanks!

You want RefreshMonitoredDownloads, which runs every minute.

It worked great, thanks for your help!

A post was split to a new topic: Merging Shows on TVMaze