diff --git a/API.md b/API.md index 2b19d04..eac022b 100644 --- a/API.md +++ b/API.md @@ -43,3 +43,8 @@ $params = @{"name"="RescanMovie";"movieId"="$movie_id";} | ConvertTo-Json Invoke-WebRequest -Uri http://RADARRIP:RADARRPORT/api/command?apikey=RADARRAPIKEY -Method POST -Body $params ``` +### Curl on Linux +Example of instructing Radarr to do a backlog search of your missing movies which are released. You can put this command in CRON to do it on a schedule. +``` +curl -d '{name: "missingMoviesSearch", filterKey: "status", filterValue: "released"}' -H "Content-Type: application/json" -X POST http://RADARRIP:RADARRPORT/api/command?apikey=RADARRAPIKEY +``` \ No newline at end of file