Skip to main content
GET
/
networks
/
notifications
List Notifications
curl --request GET \
  --url https://api.eflow.team/v1/networks/notifications \
  --header 'X-Eflow-Api-Key: <api-key>'
[
  {
    "notification_id": 123,
    "network_id": 123,
    "title": "<string>",
    "message": "<string>",
    "type": "<string>",
    "is_read": true,
    "time_created": 123
  }
]

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Response

200 - application/json

OK

notification_id
integer

Unique notification ID.

network_id
integer

Network ID.

title
string

Notification title.

message
string

Notification message body.

type
string

Notification type.

is_read
boolean

Whether the notification has been read.

time_created
integer

Unix timestamp of creation.