whatsapp_delete_message
Delete WhatsApp messages for all chat participants using message ID, chat ID, and sender ID to remove unwanted content from group or individual conversations.
Instructions
Delete a message for all participants in the chat.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chatId | Yes | Chat ID where the message is located | |
messageId | Yes | ID of the message to delete | |
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 delete",
"type": "string"
},
"senderId": {
"description": "ID of the message sender",
"type": "string"
}
},
"required": [
"messageId",
"chatId",
"senderId"
],
"type": "object"
}