curl --location --request PUT 'https://test-api.bringthisfood.com/v1/chat//messages' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"messages": {
"<message-id>": {
"delivery": {
"status": "read"
}
}
},
"viewerStoreId": "string"
}'{
"success": true,
"statusCode": 200,
"data": {
"messages": {
"<message-id>": {
"id": "string",
"text": "string",
"dateCreated": "2025-10-08T15:30:00.451Z",
"chat": {
"id": "string"
},
"sender": {
"objectType": "store",
"id": "string"
},
"delivery": {
"status": "sent"
}
}
}
}
}