Skip to main content
GET
/
notifications
Get Notifications
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/notifications \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "1",
    "title": "New Message",
    "message": "You have a new message from User",
    "read": false,
    "createdAt": "2025-07-10T14:30:00Z"
  },
  {
    "id": "2",
    "title": "System Update",
    "message": "Scheduled maintenance this weekend",
    "read": true,
    "createdAt": "2025-07-09T10:15:00Z"
  }
]
Retrieves a list of notifications for the current user.

Required Permissions

  • notifications:read

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Responses

āœ… 200 - List of notifications

āš ļø 401 - undefined

āŒ 500 - undefined

Tags

Notifications

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

List of notifications

id
string
Example:

"1"

title
string
Example:

"New Message"

message
string
Example:

"You have a new message from User"

read
boolean
Example:

false

createdAt
string<date-time>
Example:

"2025-07-10T14:30:00Z"

⌘I