Update Group Settings
Supported & TestedUpdate verified group settings such as announce and restrict.
POSThttps://api.waplix.io/api/v1/groups/update-settings
Authentication
Authorization: Bearer YOUR_API_KEY Parameters Specification
| Parameter | Type | Required | Description |
|---|---|---|---|
| instance_id | string | Required | Required Waplix instance id |
| group_id | string | Required | Required WhatsApp group id ending with @g.us |
| announce | boolean | Optional | Boolean, only admins can send when true |
| restrict | boolean | Optional | Boolean, only admins can edit info when true |
instance_id
stringReq Required Waplix instance id
group_id
stringReq Required WhatsApp group id ending with @g.us
announce
booleanOpt Boolean, only admins can send when true
restrict
booleanOpt Boolean, only admins can edit info when true
Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/update-settings" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"instance_id": "demo_instance",
"group_id": "120363000000000000@g.us",
"announce": false,
"restrict": false
}'Success Response
Response · 200 OK
{
"success": true,
"data": {
"instance_id": "demo_instance",
"group_id": "120363000000000000@g.us",
"announce": false,
"restrict": false,
"status": "updated"
}
} Was this page helpful?