Skip to main content
GET
/
:projectId
/
app-notifications
/
count
Count Unread Notifications
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/app-notifications/count
{
  "count": 123
}
Retrieve the number of unread app notifications for the authenticated user.

Response

Returns a simple number representing the count of unread notifications:
count
number
Total number of unread notifications for the authenticated user

Error Responses

{
  "error": "Internal server error.",
  "code": "app-notification/server-error",
  "details": "<Error message>"
}

Notes

  • Requires authentication
  • Returns a simple number representing the count of unread notifications
  • Use this endpoint to display notification badge counts in your UI
  • Rate limiting: 100 requests per 5 minutes
I