Skip to content

`GET /api/v1/notifications` — list notifications for the requesting operator.

GET
/api/v1/notifications
curl --request GET \
--url https://example.com/api/v1/notifications
unread
boolean

When true, only return notifications the requesting operator has not yet marked as read.

limit
integer

Maximum number of notifications to return.

List of notifications

Media typeapplication/json

Response body for GET /api/v1/notifications.

object
notifications
required
Array<object>

A single notification in the API response.

object
event_id
required
string
event_type
required
string
id
required
string
severity
required
string
summary
required
string
timestamp_ms
required
integer format: int64
unread_count
required
integer format: int64
Examplegenerated
{
"notifications": [
{
"event_id": "example",
"event_type": "example",
"id": "example",
"severity": "example",
"summary": "example",
"timestamp_ms": 1
}
],
"unread_count": 1
}