Create Group

Create WhatsApp Groups

Below API allows creating new groups

Groups will drastically slow down your WhatsApp automation server and may affect the regular WhatsApp sending and receiving speed, so please use group features carefully, there is no option to scale up the WhatsApp Web Automation beyond a limit.

Create Groups

POST https://pickyassist.com/app/api/v2/create-whatsapp-group

This API allows you to create a WhatsApp Group

Request Body

NameTypeDescription

token

string

Your API Token for authentication

group_subject

string

Subject of the Group, Maximum 25 Characters

group_icon

string

Pass the Link of the picture to be updated as group icon (Not supported in WhatsApp Web Automation)

{
   "group_id":"91940055074-161827483",
   "group_invite_link":"https:\/\/chat.whatsapp.com\/Cu24HdeSK2xqDWi4PODC",
   "status":100,
   "message":"Success"
}

Sample Request Body JSON

{
	"token": "7b18871699f15850e9832a24547105cfe3",
	"group_subject": "picky group",
	"application":10,
	"number":["9194XXXXXXX"]
}

Sample Response

{
   "group_id":"91940055074-161827483",
   "group_invite_link":"https:\/\/chat.whatsapp.com\/Cu24HdeSK2xqDWi4PODC",
   "status":100,
   "message":"Success"
}

Response Variables

Variable Name

Type

Description

group_id

String

This will return after creating a group , this id used to identify the group

group_invite_ink

Link

This will return after creating a group , this link can be shared with users to join the group

In case if you are not getting the Group Invite Link in this variable then please call the Fetch Group Details API after 5 minutes.

group_subject

String

Group Subject

status

Numeric

Status of the request

message

String

Error / Sucess message of the request

Last updated