Picky Assist Help Desk
Setting Up
API V2
FAQ
Guide
Search…
Welcome To Picky Assist 🙏
Setting Up Guide
Setting Up Account
Connecting Channels
Setting Up Teambox
Setting Up Smart Replies
Setting Up Broadcaster
Setting Up Sequence
Setting Up CRM
Setting Up Social CRM
Setting Up Connector
Setting Up Widgets
Setting Up Ad-On's
Quick Rollout Guide
Archives
API Documentation V2
Introduction
Quick Start Guide 🏃
Sandbox Mode WhatsApp Official
Global Webhook
Event Webhook
Push API
WhatsApp Template API
WhatsApp Group API
Introduction
API Variables
Create Group
Set Group Permission
Add Group Admin
Add Group Members
Fetch Group Details
Update Group Info
Remove Group Members / Admin
Generate New Invite Link
Group Delete Actions
WhatsApp Settings API's
Call Conference API
Device Manage API’s
Account API
Project Management API
References
Sample Codes
Limitations & Disclaimer
General Guidelines
WhatsApp
Billing
Blacklisting Numbers
Adding Money Into Account
FAQ
General FAQ
Push API FAQ
Webhook FAQ
Changelog
2021
2020
2019
Powered By
GitBook
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.
post
https://pickyassist.com/app/api/v2
/create-whatsapp-group
Create Groups
Sample Request Body JSON
1
{
2
"token"
:
"7b18871699f15850e9832a24547105cfe3"
,
3
"group_subject"
:
"picky group"
,
4
"application"
:
10
,
5
"number"
:
[
"9194XXXXXXX"
]
6
}
7
Copied!
Sample Response
1
{
2
"group_id"
:
"91940055074-161827483"
,
3
"group_invite_link"
:
"https:\/\/chat.whatsapp.com\/Cu24HdeSK2xqDWi4PODC"
,
4
"status"
:
100
,
5
"message"
:
"Success"
6
}
Copied!
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
Previous
API Variables
Next
Set Group Permission
Last modified
1yr ago
Copy link
Contents
post
Create Groups
Sample Request Body JSON
Sample Response
Response Variables