run_command
Queue a Radarr management command—like searching movies, refreshing metadata, or scanning downloads—and get an id to track its async progress.
Instructions
Queue a Radarr command. Commands run asynchronously — the response carries an id to poll with get_command. Allowed: MoviesSearch, MissingMoviesSearch, CutoffUnmetMoviesSearch, RefreshMovie, RefreshCollections, RescanMovie, RenameMovie, RenameFiles, DownloadedMoviesScan, ImportListSync, RssSync, RefreshMonitoredDownloads, CheckHealth, Housekeeping, ApplicationUpdateCheck, ClearBlocklist, Backup. 'MoviesSearch', 'RefreshMovie', 'RescanMovie', 'RenameMovie' and 'RenameFiles' take movie_ids; the rest take none.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Command name | |
| params | No | Extra command body fields, merged as-is (e.g. { files: [1, 2] } for RenameFiles) | |
| movie_ids | No | Radarr movie ids for the commands that operate on movies |