OUTCOME · Discover
What changes
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
v2Notifications
/api/v2/notifications/allPURPOSE + BUSINESS CONTEXT
WHEN THIS CALL IS USEFUL
Use for a profile or workspace notification center that needs the newest operational signals, unread aggregate, and stable presentation references before the person or agent decides whether to open the underlying domain workflow.
OUTCOME · Discover
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
WHY IT MATTERS
ISOLATION + AUTHORITY
Profile, workspace, notification, delivery channel, read or archive status, referenced resource, and owning-domain lifecycle remain distinct. Reading, marking, or archiving a signal changes only inbox presentation state and never authorizes, executes, reverses, or resolves the referenced business action.
BEFORE YOU CALL
WHAT TO DO NEXT
AGENT GUIDANCE
The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.
Open the authoritative production contract ↗EXTENDED INTEGRATION GUIDANCE
Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.
PARAMETERS
AuthorizationheaderRequiredBearer tokenCredential containing the profile:read scope.EXAMPLEBearer hc_live_…
cursorqueryOptionaldecimal offset · 0–1000000Cursor returned by the preceding page; defaults to 0 and is valid only with the same owner and filters.EXAMPLE0
limitqueryOptionalinteger · 1–100Maximum newest signals to return; defaults to 50.EXAMPLE50
includeArchivedqueryOptionalbooleanInclude archived records; defaults to false.EXAMPLEfalse
RESPONSES
{
"items": [
{
"notificationUuid": "notice-security-review-20260901",
"title": "Security review ready",
"message": "Review the current authentication event before acknowledging this signal.",
"type": "SECURITY_REVIEW",
"source": "IDENTITY",
"status": "UNREAD",
"reference": "authentication-event-01J…",
"href": "/account/security/events/authentication-event-01J…",
"createdAt": "2026-09-01T18:42:17.123456Z",
"updatedAt": "2026-09-01T18:42:17.123456Z"
}
],
"unreadCount": 1,
"nextCursor": null,
"limit": 50
}{
"code": "invalid_notification_query",
"message": "The cursor, limit, status, or archive filter is invalid."
}invalid_notification_query{
"code": "invalid_credentials",
"message": "The bearer credential is missing or invalid."
}invalid_credentials{
"code": "insufficient_scope",
"message": "The credential lacks profile:read or the owner boundary is unavailable."
}insufficient_scope{
"code": "notifications_unavailable",
"message": "The authoritative owner-scoped inbox is unavailable."
}notifications_unavailableOPERATIONAL NOTES
UPGRADING FROM V1
If you maintain an older integration, use this map to find the V2 replacement. Do not translate the old request field-for-field: rebuild it from the V2 parameters and schemas above because identity, authorization, replay protection, and response semantics may have changed.
/api/v1/notifications/allNOTIFICATIONS: Get All NotificationsThis route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.
Verify the exact production OpenAPI operation ↗Return to the V2 directory ↗