From f3a3746209f8269dae2db2791ca96eb768b0e4b7 Mon Sep 17 00:00:00 2001 From: erentar Date: Wed, 19 Jun 2024 02:02:32 +0200 Subject: [PATCH] download: POST requests must include Content-Type: application/json --- mkdocs/docs/api/download.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mkdocs/docs/api/download.md b/mkdocs/docs/api/download.md index 3648144..fec1cfe 100644 --- a/mkdocs/docs/api/download.md +++ b/mkdocs/docs/api/download.md @@ -21,6 +21,8 @@ Parameter: - autostart: true +This value must be posted with the header `"Content-Type: application/json"` + Delete download queue items by filter: **DELETE** `/api/download/?filter=ignore` **DELETE** `/api/download/?filter=pending` @@ -52,3 +54,9 @@ Download existing video now: **DELETE** `/api/download//` Forget or delete from download queue + +Add a new item to queue, not previously ignored or pending: +```json +{ + "youtube_id" +} \ No newline at end of file