Notifications
beginnerMark notifications as read and dismiss them.
Mark as read
POST
/v1/notifications/{notification_id}/readMark a single notification as read.
notification_idstringrequiredNotification ID (path parameter).
200Response
{
"message": "Notification marked as read"
}Mark all as read
POST
/v1/notifications/read-allMark all notifications as read.
200Response
{
"message": "All notifications marked as read"
}Dismiss notification
DELETE
/v1/notifications/{notification_id}Dismiss (delete) a single notification.
notification_idstringrequiredNotification ID (path parameter).
200Response
{
"message": "Notification dismissed"
}