Update Group Info

Updating WhatsApp Group Name

Below API allows to Update Group Info

Update Group Info

POST https://pickyassist.com/app/api/v2/update-group-info

This API allows you to update Group Info

Request Body

NameTypeDescription

token

string

Your API Token for authentication

group_id

string

Pass the Group ID you would like to update the Group Info

group_subject

string

Pass the new group subject you would like to set, maximum of 25 characters

group_icon

string

Pass the URL you would like to set as Group Icon (Not Supported in WhatsApp Web Automation)

{
    "status": 100,
    "message": "Success"
}

Sample Request Body JSON

{
	"token": "7b1887119486225850e9832a24547105cfe3",
	"group_id": "91940055074-161217483",
	"group_subject": "picky test group",
	"application":10
}

Sample Response

{
    "status": 100,
    "message": "Success"
}

Last updated