Get notification
Retrieves the full notification object including title, message, type, priority, read/archive/shown state, timestamps, and optional custom data payload. Returns 404 if the notification does not belong to the authenticated recipient.
Authorization
recipientSession In: header
Response Body
curl -X GET "https://loading/v1/me/notifications/{notificationId}"List notifications GET
Returns a paginated list of notifications for the authenticated recipient. Filter by `status` (all, unread, read, archived), `type`, or `topicId`. Use `cursor` for keyset pagination. Results are ordered by creation time descending, newest first.
Update notification state PATCH
Applies exactly one state change to the notification: mark as read/unread, archive/unarchive, or mark as shown. The body must contain exactly one of `read`, `archived`, or `shown`. Marking as shown is write-once and cannot be reverted.