`POST /api/v1/notifications/{id}/read` — mark a single notification as read for the requesting operator.
POST
/api/v1/notifications/{id}/read
const url = 'https://example.com/api/v1/notifications/example/read';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/notifications/example/readParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Notification ID
Responses
Section titled “ Responses ”Notification marked read
Notification not found