DevelopersAPI referenceNotificationsFeed
Clear the badge
Marks every unread item in the active org read.
View as MarkdownAuthorization
bearer AuthorizationBearer <token>
In: header
Response Body
application/json
application/json
application/json
curl -X POST "https://example.com/v1/notifications/read-all"{ "message": "string"}Mark read or unread
Returns the updated notification.
Live unread stream (SSE)
A Server-Sent Events stream of the caller's unread count for the active org. The connection emits `data: {"unread": N}` immediately on connect and again whenever a new feed row lands, plus `: ping` heartbeat comments. The client updates its badge and refetches the feed on each data event. One-way and stateless by design — any replica can serve any client. Product notifications reach the feed asynchronously via the platform event outbox (eventkit), not a direct call to this service.