From 2fc44f5818f2248abdb9e6eb2d4c89a7d66fac63 Mon Sep 17 00:00:00 2001 From: euphoria360 Date: Fri, 2 Mar 2018 11:49:00 +0330 Subject: [PATCH] Adding Example of Curl on Linux --- API.md | 5 +++++ 1 file changed, 5 insertions(+) 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