TypeScript
const options = {method: 'POST'}; fetch('http://localhost:4010/v1/atlas/notifications/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>" } }
Mark all notifications as read (Atlas platform)
All marked as read
true
Show child attributes
Was this page helpful?