Notifications
List in-app notifications
Dashboard JWT only. Returns recent org notifications and an unread count. Created alongside outbound webhook emits for key money events.
GET
List in-app notifications
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Dashboard JWT only. Returns recent org notifications and an unread count. Created alongside outbound webhook emits for key money events.
curl --request GET \
--url http://localhost:4000/v1/notificationsconst options = {method: 'GET'};
fetch('http://localhost:4000/v1/notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications"
response = requests.get(url)
print(response.text)curl --request GET \
--url http://localhost:4000/v1/notificationsconst options = {method: 'GET'};
fetch('http://localhost:4000/v1/notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/notifications"
response = requests.get(url)
print(response.text)