Skip to main content
POST
/
api
/
v1
/
notifications
/
inbox
/
read-all
Mark all as read
const options = {method: 'POST'};

fetch('http://localhost:4055/api/v1/notifications/inbox/read-all', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "data": {
    "markedCount": 123
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Query Parameters

platform
enum<string>

Explicit platform identifier. If provided, overrides auto-detection based on session context.

Available options:
arc,
atlas

Response

All marked as read

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