whatsapp_mark_message_read
Mark WhatsApp messages as read to confirm message receipt and update read status for specific chats and senders.
Instructions
Mark a message as read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chatId | Yes | Chat ID where the message is located | |
| messageId | Yes | ID of the message to mark as read | |
| receiptType | Yes | Type of receipt to send | |
| senderId | Yes | ID of the message sender |
Input Schema (JSON Schema)
{
"properties": {
"chatId": {
"description": "Chat ID where the message is located",
"type": "string"
},
"messageId": {
"description": "ID of the message to mark as read",
"type": "string"
},
"receiptType": {
"description": "Type of receipt to send",
"enum": [
"delivered",
"sender",
"read",
"played"
],
"type": "string"
},
"senderId": {
"description": "ID of the message sender",
"type": "string"
}
},
"required": [
"messageId",
"chatId",
"senderId",
"receiptType"
],
"type": "object"
}