whatsapp_set_chat_presence
Set your presence status in a WhatsApp chat to indicate typing, recording voice, or pausing activity, helping other participants understand your current activity state.
Instructions
Set presence status in a chat (typing, recording, paused).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chatId | Yes | Chat ID | |
| state | Yes | Presence state |
Input Schema (JSON Schema)
{
"properties": {
"chatId": {
"description": "Chat ID",
"type": "string"
},
"state": {
"description": "Presence state",
"enum": [
"typing",
"recording",
"paused"
],
"type": "string"
}
},
"required": [
"chatId",
"state"
],
"type": "object"
}