cURL
curl --request POST \ --url https://{host}/api/{session}/labels \ --header 'Content-Type: application/json' \ --header 'apikey: <api-key>' \ --data ' { "name": "Lead", "colorHex": "#ff9485", "color": null } '
{ "success": true, "label": { "id": "label123", "name": "VIP Clients", "color": 1 } }
Create new label to organize and categorize chats
200
400
401
curl -X POST https://api.wappfy.com.br/api/my-session/labels \ -H "Content-Type: application/json" \ -d '{ "label": { "name": "VIP Clients", "color": 1 } }'
Your Wappfy API key (get it at dash.wappfy.com.br)
Session name (instanceName)
Label name
"Lead"
Color in hex
"#ff9485"
Color number, not hex
null
Label ID
"1"
0