Fetch Group Details

Fetching WhatsApp Group Details

Below API allows to fetch group details

Fetch Group Details

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

This API allows you to fetch WhatsApp Group Details

Request Body

NameTypeDescription

token

string

Your API Token for authentication

group_id

string

If you want to query for specific group then please pass the group id If you left this field blank then system will fetch all group details in your WhatsApp Account

{
    "status": 100,
    "message": "Success",
    "group_id": "GY4008",
    "group_subject": "Groups",
    "group_icon_link": "https://pickyassist.com/img/social-messaging.png",
    "group_invite_link": "https://chat.whatsapp.com/FL7nAPRWri0KDttMdQHpba",
    "group_admins": [
        {
            "number": "993436042290",
            "created_time": "15-01-2020 03:04 PM"
        }
    ],
    "group_members": [
        {
            "number": "13447077348",
            "created_time": "15-01-2020 11:44 AM"
        }
    ],
    "group_created_date": "14-01-2020 12:29 PM"
}

Sample Request Body JSON

{
	"token": "7b18871699f1948650e9832a24547105cfe3",
	"group_id": "9194055074-16187483",
	"application":10
}

Sample Response

{
   "status":100,
   "message":"Success",
   "group_id":"91940055074-16217483",
   "group_subject":"picky test group",
   "group_icon_link":"",
   "group_invite_link":"https:\/\/chat.whatsapp.com\/Cu24HsZdeSK2xWi4PODC",
   "group_admins":[
      {
         "number":"9196707768",
         "created_time":"2021-04-01T13:51:40+05:30"
      }
   ],
   "group_members":[
      {
         "number":"546919446768",
         "created_time":"2021-04-01T13:32:37+05:30"
      },
      {
         "number":"5459942009",
         "created_time":"2021-04-01T14:03:53+05:30"
      }
   ],
   "group_created_date":"2021-04-01T13:32:37+05:30"
}

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

group_subject

String

Group Subject

group_icon_link

URL

Group Icon Link (Not Supported in WhatsApp Web Automation)

group_admins

Array

Array which contains admin details number created_time

group_members

Array

Array which contains group member details number created_time

group_created_date

Date

Date & time when the groups is created,

Timezone in your account , and date format is DD-MM-YYYY hh:mm AM

This will be blank if the groups are not created through Picky Assist API's i.e Groups that are created manually from the phone will not have the created time updated to Picky Assist

status

Numeric

Status of the request

message

String

Error / Sucess message of the request

Last updated