TypeScript
const options = {method: 'DELETE'}; fetch('http://localhost:4005/v1/arc/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>" } }
Mark notification as unread (Arc platform)
Marked as unread
true
Show child attributes
Was this page helpful?