Update Settings

Supported & Tested

Update an existing WhatsApp instance slot configuration.

PUThttps://api.waplix.io/api/v1/instances/update
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
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?