POST
/
notifications
/
{id}
/
read
Mark notification as read
curl --request POST \
  --url https://localhost:5000/notifications/{id}/read \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Notification marked as read"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Notification ID

Response

Notification marked as read

success
boolean
Example:

true

message
string
Example:

"Notification marked as read"