mirror of
https://github.com/Radarr/Radarr
synced 2025-03-11 14:45:23 +00:00
Adding Example of Curl on Linux
parent
726f6c1ceb
commit
2fc44f5818
1 changed files with 5 additions and 0 deletions
5
API.md
5
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
|
||||
```
|
Loading…
Add table
Reference in a new issue