Add Group Admin

Adding WhatsApp Group Admin

Below API allows to add group admin

Please note a group admin can view your group invite url and able to add / remove members manually. So please be careful while promoting a member as admin.

Add Group Admin

POST https://pickyassist.com/app/api/v2/add-group-admin

This API allows you to Add Admin for a Group

Request Body

NameTypeDescription

token

string

Your API Token for authentication

group_id

string

Your Unique group id which is given as the response after you create a group

number

array

This is an array and you can pass multiple WhatsApp number to promote a member as admin, the number must be a member in the group, please pass country code along with number without 0 or +

{
    "token": "c81f742beed18a5213ec1afcc03a6a3d3b",
    "group_id": "GY4008",
    "number": [
        "91894893424"
    ]
}

Sample Request Body JSON

{
	"token": "7b1887119486225850e9832a24547105cfe3",
	"group_id": "9194055074-16117483",
	"number": [
    	"9194XXXXXXX"
	],
	"application":10
}

Sample Response

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

Last updated