1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 06:07:19 +02:00

Added "missingMoviesSearch" command API

euphoria360 2018-03-02 11:42:50 +03:30
parent 0459ecd2cd
commit 726f6c1ceb

@ -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.
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"}`
---