mirror of
https://github.com/Radarr/Radarr
synced 2024-12-22 16:02:43 +00:00
Updated series and added expected response
parent
5a8591b2c0
commit
697a4b9c52
1 changed files with 7 additions and 4 deletions
|
@ -34,12 +34,15 @@ Usage:
|
||||||
* example.com - your url/hostname where radarr is served from
|
* example.com - your url/hostname where radarr is served from
|
||||||
* X-Api-Key - Your API key found from `https://example.com/radarr/settings/general`
|
* X-Api-Key - Your API key found from `https://example.com/radarr/settings/general`
|
||||||
|
|
||||||
You can manually enter id's as {x..X}:
|
You can manually enter id's as $(seq x y):
|
||||||
|
|
||||||
`for i in {x..X}; do curl https://example.com/radarr/api/movie/$i -X DELETE -H 'X-Api-Key: xxxxxxxxx' -k; done`
|
`for i in $(seq x y); do curl https://example.com/radarr/api/movie/$i -X DELETE -H 'X-Api-Key: xxxxxxxxx' -k; done`
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
* x - first id in series
|
* x - first id in series
|
||||||
* X - last id in series
|
* y - last id in series
|
||||||
|
|
||||||
This will remove all movies with id's from the start to the end of the series.
|
This will remove all movies with id's from the start to the end of the series. You may encounter ``"message": "Movie with ID 241 does not exist"`` errors.
|
||||||
|
|
||||||
|
**Expected response**
|
||||||
|
For either method shown above, a successful delete will print ``{}``.
|
Loading…
Reference in a new issue