Marks specific messages in a conversation as read by the current user
cURL
curl --request POST \ --url http://localhost:3000/api/conversations/mark-messages-read \ --header 'Content-Type: application/json' \ --data ' { "conversationId": "<string>", "messageIds": [ "<string>" ] } '
{ "success": true }
ID of the conversation
Array of message IDs to mark as read
Messages marked as read successfully
Whether the operation was successful