whatsapp_update_instance_settings
Modify WhatsApp instance configuration including name, description, and event pull mode settings to customize how the WhatsApp session operates within the WSAPI service.
Instructions
Update instance settings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Instance description | |
| name | No | Instance name | |
| pullMode | No | Enable pull mode for events |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Instance description",
"optional": true,
"type": "string"
},
"name": {
"description": "Instance name",
"optional": true,
"type": "string"
},
"pullMode": {
"description": "Enable pull mode for events",
"optional": true,
"type": "boolean"
}
},
"type": "object"
}