PLEXICHATNarrative Docs
Notifications
Guides, route-group overviews, and live schema entry points for the Plexichat backend.
REST http://api.plexichat.com/api/v1Gateway ws://api.plexichat.com/gatewayVersion a.1.0-49
Notification Routes
Notification APIs are scoped to the authenticated user.
Routes
GET /users/@me/notificationsPUT /users/@me/notifications/read-allPUT /users/@me/notifications/{notification_id}/read
Purpose
These routes let clients fetch the current notification feed, mark a single notification as read, or clear all unread items for the current user.
Typical Flow
- fetch notifications on startup or when the app regains focus
- mark individual notifications as read when the user visits the target content
- use
read-allfor explicit inbox-clearing actions
Client Guidance
- keep local unread counts synchronized with server responses
- prefer targeted read calls over repeatedly re-fetching large feeds
- pair these routes with gateway notification events when available