curl --request GET \
--url https://api.example.com/v1/ui/notifications[
{
"id": "<string>",
"title": "<string>",
"message": "<string>",
"type": "info",
"priority": "low",
"isRead": true,
"isArchived": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]Retrieves notifications for the authenticated user with optional filtering and pagination.
curl --request GET \
--url https://api.example.com/v1/ui/notifications[
{
"id": "<string>",
"title": "<string>",
"message": "<string>",
"type": "info",
"priority": "low",
"isRead": true,
"isArchived": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]Maximum number of notifications to return
Number of notifications to skip for pagination
Filter by read status
Filter by notification type
info, success, warning, error, payment, transaction, system Filter by notification priority
low, medium, high, urgent Include archived notifications
Notifications retrieved successfully
Notification ID
Notification title
Notification message
Notification type
info, success, warning, error, payment, transaction, system Notification priority
low, medium, high, urgent Whether notification is read
Whether notification is archived
Creation timestamp
Last update timestamp