whatsapp_pin_chat
Pin or unpin WhatsApp chats to organize important conversations and keep them easily accessible at the top of your chat list.
Instructions
Pin or unpin a chat.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chatId | Yes | Chat ID | |
| pinned | Yes | Whether to pin or unpin |
Input Schema (JSON Schema)
{
"properties": {
"chatId": {
"description": "Chat ID",
"type": "string"
},
"pinned": {
"description": "Whether to pin or unpin",
"type": "boolean"
}
},
"required": [
"chatId",
"pinned"
],
"type": "object"
}