whatsapp_set_account_presence
Update your WhatsApp account status to show as available or unavailable to other users, controlling your online presence visibility.
Instructions
Set account presence status.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | Presence status |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"description": "Presence status",
"enum": [
"available",
"unavailable"
],
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}