Notifications
Mark all notifications read
Dashboard JWT only.
POST
Mark all notifications read
Response
All unread notifications marked read
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Dashboard JWT only.
curl --request POST \
--url http://localhost:4000/v1/notifications/read-allconst options = {method: 'POST'};
fetch('http://localhost:4000/v1/notifications/read-all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications/read-all"
response = requests.post(url)
print(response.text)All unread notifications marked read
curl --request POST \
--url http://localhost:4000/v1/notifications/read-allconst options = {method: 'POST'};
fetch('http://localhost:4000/v1/notifications/read-all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications/read-all"
response = requests.post(url)
print(response.text)