Skip to main content
DELETE
/
v1
/
atlas
/
notifications
/
notifications
/
inbox
/
{id}
/
read
Mark as unread
const options = {method: 'DELETE'};

fetch('http://localhost:4010/v1/atlas/notifications/notifications/inbox/{id}/read', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "data": {
    "id": "<string>",
    "read": false
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Path Parameters

id
string
required

Response

Marked as unread

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object
required