Skip to main content
PATCH
/
:projectId
/
app-notifications
/
:notificationId
/
mark-as-read
Mark Notification as Read
curl --request PATCH \
  --url https://api.replyke.com/api/v6/:projectId/app-notifications/:notificationId/mark-as-read
Mark a specific app notification as read for the authenticated user.

Path Parameters

notificationId
string
required
ID of the notification to mark as read

Response

Success returns a 200 OK status with no response body.

Error Responses

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

Notes

  • Requires authentication
  • Only notifications belonging to the authenticated user can be marked as read
  • If no matching notification is found, a 404 is returned
  • Successfully marking a notification as read will decrement the unread count
  • Rate limiting: 100 requests per 5 minutes