create_instance
Create a new WhatsApp Business instance for sending messages, managing contacts, and handling events through webhooks with QR code authentication.
Instructions
Create a new WhatsApp instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceName | Yes | Name for the instance | |
qrcode | No | Generate QR code for connection | |
webhookUrl | No | Webhook URL for events |
Input Schema (JSON Schema)
{
"properties": {
"instanceName": {
"description": "Name for the instance",
"type": "string"
},
"qrcode": {
"description": "Generate QR code for connection",
"type": "boolean"
},
"webhookUrl": {
"description": "Webhook URL for events",
"type": "string"
}
},
"required": [
"instanceName"
],
"type": "object"
}