PUT /v1/notifications/{id}/read

Mark notification as read

Marks a specific notification as read

Request

PUT /v1/notifications/{id}/read

Parameters

[ { "schema": { "type": "string" }, "required": true, "name": "id", "in": "path" } ]

Response

{ "200": { "description": "Notification marked as read successfully", "content": { "application/json": { "schema": { "type": "object", "properties": { "success": { "type": "boolean" }, "message": { "type": "string" } }, "required": [ "success", "message" ] } } } }, "404": { "description": "Notification not found" } }

View in Interactive API Reference