Notification

The Notification API helps you acquire notifications to your user and mark as read

API SUBPATH: eva-notification

Return all notifications.

get
Path parameters
orgUUIDstringRequired

A valid uuid of an organization

Header parameters
x-request-idstringOptional

It is an identifier provided by the API client that will be used to identify distributed logs.

Responses
200
Ok
*/*
get
GET /org/{orgUUID}/notifications/user HTTP/1.1
Host: 
Accept: */*
[
  {
    "createdAt": "2025-06-29T20:49:12.076Z",
    "read": true,
    "messages": [
      {
        "language": "text",
        "title": "text",
        "message": "text",
        "url": "text",
        "action": "text"
      }
    ]
  }
]

Mark a user's notifications as read

put
Path parameters
orgUUIDstringRequired

A valid uuid of an organization

Header parameters
x-request-idstringOptional

It is an identifier provided by the API client that will be used to identify distributed logs.

Responses
204
No Content
put
PUT /org/{orgUUID}/notifications/user HTTP/1.1
Host: 
Accept: */*

No content

Last updated

Was this helpful?