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

Fix markup + Renamed sections

Abzie 2017-04-22 23:28:03 +01:00
parent 697a4b9c52
commit 7a05c27492

@ -24,18 +24,16 @@ api.txt
So, id's 4, 68 and 93 are the id's required for the next step.
--
Oneshot example:
---
**Oneshot example**
`for i in 4 68 93; do curl https://example.com/radarr/api/movie/$i -X DELETE -H 'X-Api-Key: xxxxxxxxx' -k; done`
Usage:
* example.com - your url/hostname where radarr is served from
* X-Api-Key - Your API key found from `https://example.com/radarr/settings/general`
You can manually enter id's as $(seq x y):
**Sequential Delete**
`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: