Skip to main content
GET
/
recipients
/
{recipient_id}
/
notifications
/
unread-count
Get unread notification count for a recipient
curl --request GET \
  --url https://api.example.com/recipients/{recipient_id}/notifications/unread-count \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "unread_count": 5
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer bv_xxxxxxxxx, where bv_xxxxxxxxx is your API Key with Full access or Recipient acess scope.

Path Parameters

recipient_id
string
required

The unique identifier of the recipient.

Response

Unread notification count for the recipient.