Stream notifications in real time (SSE)
Opens a Server-Sent Events stream that pushes new notifications to the authenticated user as they occur, so the dashboard bell updates without polling. Browsers authenticate with a one-time token from POST /api/v1/notifications/sse-token passed as ?ot=<token> (EventSource cannot send headers); server-side callers may pass ?token=<api-key>. The stream emits periodic heartbeats and enforces a per-tenant concurrent-connection cap.
Authorizations
Dashboard JWT token from Clerk
Response
A text/event-stream of notification events. Each frame is data: <json notification> terminated by a blank line, interleaved with : heartbeat comment lines.
text/event-stream payload. Each frame is data: <json notification> followed by a blank line; : heartbeat comment lines keep the connection alive.