Add notification api

This commit is contained in:
MerlinScheurer 2024-05-13 14:53:05 +02:00
parent 5077e0f620
commit 78eff229ea

View File

@ -140,3 +140,28 @@ When valid returns message with user id and TubeArchivist version:
"version": "v0.4.7" "version": "v0.4.7"
} }
``` ```
## Notification List
Get all current notifications.
**GET** `/api/notification/`
Parameter:
- filter: "download" | "settings" | "channel"
```json
[
{
"title": "Rescan your Subscriptions",
"group": "download:scan",
"api-start": true,
"api-stop": true,
"level": "info",
"id": "1111111-1111-1111-1111-1111111",
"command": false, // false || "STOP" || "KILL"
"messages": ["Task completed successfully"],
"progress": 0.000001
}
]
```