POST
Edit Channel
Update channel name, description, or icon.
API endpoint
https://waclient.com/api/edit_channelExample:
curl -X POST \
'https://waclient.com/api/edit_channel' \
-H 'Content-Type: application/json' \
--data '{
"channel_id": "1203634123522XXXXX@newsletter",
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"id": "1203634123522XXXXX@newsletter",
"name": "WA Client",
"description": "Updated",
"subscribers": 48
}
}| Parameter | Description |
|---|---|
| channel_id | Channel JID (WhatsApp uses @newsletter suffix), e.g. 1203634123522XXXXX@newsletter |
| name | New channel name (Optional) |
| description | New description (Optional) |
| image_url | Public image URL for channel icon (Optional) |
| remove_image | Set true to remove icon (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |