whatsapp_archive_chat
Archive or unarchive WhatsApp chats to organize your conversations by hiding or restoring them from the main chat list.
Instructions
Archive or unarchive a chat.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | Yes | Whether to archive or unarchive | |
chatId | Yes | Chat ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether to archive or unarchive",
"type": "boolean"
},
"chatId": {
"description": "Chat ID",
"type": "string"
}
},
"required": [
"chatId",
"archived"
],
"type": "object"
}