PUT /api/v1/notifications/read-all
Marks all notifications for the authenticated user as read.
Authentication
Required. Bearer token in Authorization header.
Request
No request body required.
Example
curl -X PUT https://intotes.com/api/v1/notifications/read-all \
-H "Authorization: Bearer <access_token>"
Response
200 OK
{
"message": "all notifications marked as read"
}
Errors
| Status | Code | Description |
|---|---|---|
| 401 | unauthorized | Missing or invalid authentication token |
| 500 | internal_error | Server failed to update notifications |