From 726f6c1cebb3bca8483eab0e2e03aecaa6426591 Mon Sep 17 00:00:00 2001 From: euphoria360 Date: Fri, 2 Mar 2018 11:42:50 +0330 Subject: [PATCH] Added "missingMoviesSearch" command API --- API:Command.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/API:Command.md b/API:Command.md index f426e63..ef3df71 100644 --- a/API:Command.md +++ b/API:Command.md @@ -162,4 +162,20 @@ Instructs Radarr to search all cutoff unmet movies (Take care, since it could go --- ### NetImportSync ### -Instructs Radarr to search all lists for movies not yet added to Radarr. \ No newline at end of file +Instructs Radarr to search all lists for movies not yet added to Radarr. + +--- + +### missingMoviesSearch +Instructs Radarr to search all missing movies. This functionality is similar to what CouchPotato does and runs a backlog search for all your missing movies. For example You can use this api with curl and crontab to instruct Radarr to run a backlog search on 1 AM everyday. + +##### Parameters + +`filterKey (string)` Key by which to further filter missing movies. (Possible values: monitored (recommended), all, status) + +`filterValue (string)` Value by which to further filter missing movies. This must correspond to the filterKey. (Possible values with respect to the ones for the filterKey above: (true (recommended), false), (all), (available, released, inCinemas, announced) + +**Example:** +`{name: "missingMoviesSearch", filterKey: "status", filterValue: "released"}` + +---