TypeScript
const options = {method: 'GET'}; fetch('http://localhost:4055/api/v1/notifications/inbox/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": { "id": "<string>", "category": "<string>", "priority": "<string>", "title": "<string>", "message": "<string>", "resourceType": "<string>", "resourceId": "<string>", "actionUrl": "<string>", "clickActionUrl": "<string>", "primaryActionLabel": "<string>", "primaryActionUrl": "<string>", "secondaryActionLabel": "<string>", "secondaryActionUrl": "<string>", "read": true, "readAt": "<string>", "createdAt": "<string>" }, "meta": { "requestId": "<string>", "timestamp": "<string>" } }
Get single notification by ID
Explicit platform identifier. If provided, overrides auto-detection based on session context.
arc
atlas
Notification details
true
Show child attributes
Was this page helpful?