Skip to content

Commit 9d328d9

Browse files
authored
Add undocumented MoviesSearch to post_commands
add MoviesSearch to post_commands. undocumented API that is the radarr equivalent of sonarr EpisodeSearch. It triggers a search for the given movie the same as clicking the "Search Movie" button in the UI.
1 parent 3771b92 commit 9d328d9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pyarr/models/radarr.py

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
RadarrCommands = Literal[
44
"DownloadedMoviesScan",
55
"MissingMoviesSearch",
6+
"MoviesSearch",
67
"RefreshMovie",
78
"RenameMovie",
89
"RenameFiles",
@@ -23,6 +24,12 @@
2324
MissingMoviesSearch:
2425
Searches for any missing movies
2526
27+
MoviesSearch:
28+
Searches for the specified movie or movies
29+
30+
Args:
31+
movieIds (list[int]): ID of Movie or movies
32+
2633
RefreshMovies:
2734
Refreshes all of the movies, or specific by ID
2835

0 commit comments

Comments
 (0)