move curl add to queue example

This commit is contained in:
Simon 2024-10-21 21:22:46 +07:00
parent 7917f71507
commit 6f2e0083f9
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

View File

@ -25,6 +25,15 @@ Delete download queue items by filter:
**DELETE** `/api/download/?filter=ignore`
**DELETE** `/api/download/?filter=pending`
???+ "Curl Example"
```bash
# add video to download queue
curl -XPOST -v /api/download/ \
-H "Authorization: Token xxxxxxxxxx" \
-H 'Content-Type: application/json' \
-d '{"data":[{"youtube_id": "<video-id>", "status":"pending"}]}'
```
## Download Queue Item
**GET** `/api/download/<video_id>/`
**POST** `/api/download/<video_id>/`