Notifications
Provides coroutine-based access to retrieve system or account-level notifications stored in the Norman persistence service.
The Notifications class allows developers to query notifications generated by model executions, user actions, or system events.
get_notifications(token, constraints=None) async
Coroutine
Retrieve notifications that match the provided query constraints.
This method fetches user, system, or model-related notifications from the Norman persistence layer, ordered and filtered according to the specified constraints.
Parameters
token (
Sensitive[str]) — Authentication token authorizing the request.constraints (
Optional[QueryConstraints]) — Optional query object for filtering, sorting, or limiting results.
Response Structure
response (
List[Notification]) — A list ofNotificationobjects matching the query.