Update Settings
Supported & TestedUpdate an existing WhatsApp instance slot configuration.
PUThttps://api.waplix.io/api/v1/instances/update
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Waplix instance id slot |
| name | string | Optional | New display name |
| webhook_url | string | Optional | New webhook callback URL |
instance_id
stringReq Waplix instance id slot
name
stringOpt New display name
webhook_url
stringOpt New webhook callback URL
Request Payload Example
Request
curl -X PUT "https://api.waplix.io/api/v1/instances/update" \
-H "Authorization: Bearer YOUR_API_KEY"Success Response
Response · 200 OK
{
"success": true,
"message": "Instance updated",
"data": {
"instance_id": "demo_instance",
"updated": {
"name": "Demo Instance Updated",
"webhook_url": "https://example.com/webhook"
}
},
"error": null
} Was this page helpful?