Notifications
User notifications and alert management.
Returns all notifications.
The number of pages to skip before starting to collect the result set
0The numbers of items to return
20Successful operation. Returns notifications and count.
Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/notifications HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"createDate": "2026-03-25T14:40:28.853Z",
"updateDate": "2026-03-25T14:40:28.853Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Policy published",
"type": "SUCCESS",
"action": "POLICY_CONFIGURATION",
"result": "69b83f18cd6b7c4adf4139bc",
"message": "Policy 69b83f18cd6b7c4adf4139bc published",
"read": false,
"old": false,
"id": "69c3f3dc0c86dc7119046b9f"
},
{
"createDate": "2026-03-10T13:15:21.260Z",
"updateDate": "2026-03-10T13:15:21.260Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Import schema file",
"type": "ERROR",
"message": "Cannot destructure property 'category' of '(intermediate value)' as it is null.",
"read": false,
"old": false,
"id": "69b01969b8a32e85cd3714bd"
}
]Returns new notifications.
Successful operation. Returns new notifications.
Internal database identifier
69aeb71ef8c5b278e3bab4e5Creation date in ISO 8601 format
2026-03-03T17:25:53.312ZLast update date in ISO 8601 format
2026-03-03T17:25:53.312ZUser ID who owns this notification
69aeb71ef8c5b278e3bab4e5Notification title (e.g. "Policy published", "Schema created")
Policy publishedDetailed notification message
Policy 69b83f18cd6b7c4adf4139bc publishedNotification type
SUCCESSPossible values: Action that triggered the notification (used for navigation in UI)
POLICY_CONFIGURATIONPossible values: Result ID (e.g. policy ID, schema ID) for navigation
69aeb71ef8c5b278e3bab4e5Whether the notification has been read
falseWhether the notification is old (already shown to user)
falseUnauthorized request.
Forbidden
Internal server error.
GET /api/v1/notifications/new HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"createDate": "2026-03-25T14:40:28.853Z",
"updateDate": "2026-03-25T14:40:28.853Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Policy published",
"type": "SUCCESS",
"action": "POLICY_CONFIGURATION",
"result": "69b83f18cd6b7c4adf4139bc",
"message": "Policy 69b83f18cd6b7c4adf4139bc published",
"read": false,
"old": false,
"id": "69c3f3dc0c86dc7119046b9f"
},
{
"createDate": "2026-03-10T13:15:21.260Z",
"updateDate": "2026-03-10T13:15:21.260Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Import schema file",
"type": "ERROR",
"message": "Cannot destructure property 'category' of '(intermediate value)' as it is null.",
"read": false,
"old": false,
"id": "69b01969b8a32e85cd3714bd"
}
]Returns progresses.
Successful operation. Returns progresses.
Internal database identifier
69aeb71ef8c5b278e3bab4e5Creation date in ISO 8601 format
2026-03-03T17:25:53.312ZLast update date in ISO 8601 format
2026-03-03T17:25:53.312ZUser ID who initiated the action
69aeb71ef8c5b278e3bab4e5Action being tracked (e.g. "Publish policy")
Publish policyCurrent progress message
Publishing schemas...Progress percentage (0-100)
50Progress type
INFOPossible values: Associated task ID
9db028d2-03ad-4d49-a178-cf4b67f8c147Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/notifications/progresses HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"action": "string",
"message": "string",
"progress": 0,
"type": "string",
"taskId": "69aeb71ef8c5b278e3bab4e5"
}
]Marks all notifications as read and returns them.
Successful operation. Returns notifications.
Internal database identifier
69aeb71ef8c5b278e3bab4e5Creation date in ISO 8601 format
2026-03-03T17:25:53.312ZLast update date in ISO 8601 format
2026-03-03T17:25:53.312ZUser ID who owns this notification
69aeb71ef8c5b278e3bab4e5Notification title (e.g. "Policy published", "Schema created")
Policy publishedDetailed notification message
Policy 69b83f18cd6b7c4adf4139bc publishedNotification type
SUCCESSPossible values: Action that triggered the notification (used for navigation in UI)
POLICY_CONFIGURATIONPossible values: Result ID (e.g. policy ID, schema ID) for navigation
69aeb71ef8c5b278e3bab4e5Whether the notification has been read
falseWhether the notification is old (already shown to user)
falseUnauthorized request.
Forbidden
Internal server error.
POST /api/v1/notifications/read/all HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"createDate": "2026-03-25T14:40:28.853Z",
"updateDate": "2026-03-25T14:40:28.853Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Policy published",
"type": "SUCCESS",
"action": "POLICY_CONFIGURATION",
"result": "69b83f18cd6b7c4adf4139bc",
"message": "Policy 69b83f18cd6b7c4adf4139bc published",
"read": false,
"old": false,
"id": "69c3f3dc0c86dc7119046b9f"
},
{
"createDate": "2026-03-10T13:15:21.260Z",
"updateDate": "2026-03-10T13:15:21.260Z",
"userId": "69b00a309fe1408d21bea39a",
"title": "Import schema file",
"type": "ERROR",
"message": "Cannot destructure property 'category' of '(intermediate value)' as it is null.",
"read": false,
"old": false,
"id": "69b01969b8a32e85cd3714bd"
}
]Returns deleted notifications count.
Notification Identifier
9db028d2-03ad-4d49-a178-cf4b67f8c147Successful operation. Returns deleted notifications count.
Unauthorized request.
Forbidden
Internal server error.
DELETE /api/v1/notifications/delete/{notificationId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?