cURL
curl --request PUT \ --url https://api.example.com/notifications \ --header 'Content-Type: application/json' \ --data ' { "ids": [ {} ] } '
Mark one or more notifications as read for the authenticated user
204 No Content
curl -X PUT "https://api.chronoverse.com/notifications" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "ids": ["notif_12345", "notif_12346", "notif_12347"] }'
HTTP/1.1 204 No Content