Skip to main content
GET
/
api
/
v1
/
ops
/
notifications
/
unread-count
Get Unread Notification Count
curl --request GET \
  --url https://api.example.com/api/v1/ops/notifications/unread-count \
  --header 'Authorization: Bearer <token>'
{
  "count": 3
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

Unread notification counter.

count
integer
required

Unread notification count.

Example:

3