Group Delete Actions

Below API allows to perform various actions like , delete group icon, delete group invite link, leave from group etc

A group will become inactive when it doesn't have any members. So if you want to delete a group then first delete the group invite link then remove all members and admin from the group and last you can leave yourself from the group.

Group Delete Actions

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

This API allows you to perform various actions like , delete group icon, delete group invite link, exit from group etc

Request Body

NameTypeDescription

token

string

Your API Token for Authorisation

group_id

string

Pass the Group ID for which you would like to generate a new invite link

action

number

You need to specify what kind of action you want to perform , below are the type of available actions 1=Delete Group Icon 2=Delete Invite URL 3=Delete/Leave Group 1 & 2 actions not supported in WhatsApp Web Automation

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

Sample Request Body JSON

{
	"token": "7b18871699f225850e9832a24547105cfe3",
	"group_id": "194055074-1618213",
	"application":10,
	"action" : 3
}

Sample Response

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

Last updated