download: POST requests must include Content-Type: application/json

This commit is contained in:
erentar 2024-06-19 02:02:32 +02:00
parent 6315f3ad71
commit f3a3746209

View File

@ -21,6 +21,8 @@ Parameter:
- autostart: true - autostart: true
This value must be posted with the header `"Content-Type: application/json"`
Delete download queue items by filter: Delete download queue items by filter:
**DELETE** `/api/download/?filter=ignore` **DELETE** `/api/download/?filter=ignore`
**DELETE** `/api/download/?filter=pending` **DELETE** `/api/download/?filter=pending`
@ -52,3 +54,9 @@ Download existing video now:
**DELETE** `/api/download/<video_id>/` **DELETE** `/api/download/<video_id>/`
Forget or delete from download queue Forget or delete from download queue
Add a new item to queue, not previously ignored or pending:
```json
{
"youtube_id"
}