Set Device Name
Engine LimitedChange the WhatsApp linked device name display (Engine Limited).
POSThttps://api.waplix.io/api/v1/client/set_device_name
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Waplix instance id slot |
| device_name | string | Required | Linked device custom label |
instance_id
stringReq Waplix instance id slot
device_name
stringReq Linked device custom label
Usage Notes
WhatsApp platform design limitation. Device names cannot be modified after initial QR/pairing connection has been authorized.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/client/set_device_name" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"instance_id": "demo_instance",
"device_name": "Waplix Desktop Client"
}'Success Response
Response · 200 OK
{
"success": false,
"message": "Hello from Waplix API docs.",
"data": null,
"error": {
"code": "FEATURE_NOT_SUPPORTED",
"message": "Hello from Waplix API docs."
}
} Was this page helpful?