Skip to main content
PATCH
/
:projectId
/
api
/
v7
/
app-notifications
/
:notificationId
/
mark-as-read
Mark Notification as Read
curl --request PATCH \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/app-notifications/:notificationId/mark-as-read
Marks a specific notification as read. The notification must belong to the authenticated user — users cannot mark another user’s notifications as read.
This endpoint requires an authenticated user. Include a valid Authorization: Bearer <accessToken> header.

Path Parameters

notificationId
string
required
The UUID of the notification to mark as read.

Response

Returns HTTP 200 on success with no response body.

Error Responses

{
  "error": "Notification not found",
  "code": "app-notification/not-found"
}
Returned when the notification does not exist or does not belong to the authenticated user.
{
  "error": "...",
  "code": "app-notification/invalid-params"
}
Returned when notificationId is not a valid UUID.
{
  "error": "Unauthorized",
  "code": "auth/unauthorized"
}

See Also