whatsapp_star_message
Mark important WhatsApp messages with a star for quick reference or remove stars from previously marked messages using message, chat, and sender IDs.
Instructions
Star or unstar a message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chatId | Yes | Chat ID where the message is located | |
| messageId | Yes | ID of the message to star | |
| 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 star",
"type": "string"
},
"senderId": {
"description": "ID of the message sender",
"type": "string"
}
},
"required": [
"messageId",
"chatId",
"senderId"
],
"type": "object"
}