read_message
Mark WhatsApp messages as read to maintain organized conversations and clear message status indicators in business messaging workflows.
Instructions
Mark message as read
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromMe | No | Is message from me | |
| id | No | Message ID | |
| instanceName | Yes | Instance name | |
| remoteJid | Yes | Chat JID |
Input Schema (JSON Schema)
{
"properties": {
"fromMe": {
"description": "Is message from me",
"type": "boolean"
},
"id": {
"description": "Message ID",
"type": "string"
},
"instanceName": {
"description": "Instance name",
"type": "string"
},
"remoteJid": {
"description": "Chat JID",
"type": "string"
}
},
"required": [
"instanceName",
"remoteJid"
],
"type": "object"
}