Notifications
Mark a notification read
Dashboard JWT only.
POST
Mark a notification read
Path Parameters
Response
Notification 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/{id}/readconst options = {method: 'POST'};
fetch('http://localhost:4000/v1/notifications/{id}/read', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications/{id}/read"
response = requests.post(url)
print(response.text)Notification marked read
curl --request POST \
--url http://localhost:4000/v1/notifications/{id}/readconst options = {method: 'POST'};
fetch('http://localhost:4000/v1/notifications/{id}/read', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications/{id}/read"
response = requests.post(url)
print(response.text)