How to delete a group
Deleting a WhatsApp group
Deleting a WhatsApp group works differently depending on your role in the chat — whether you are an administrator or a regular participant.
If You Are a Group Administrator
Get a group ID and a list of group member (method: https://whapi.readme.io/reference/getgroups )
Remove all participants
delete https://gate.whapi.cloud/groups/{GroupID}(method: https://whapi.readme.io/reference/removegroupparticipant )Leave the group (method: https://whapi.readme.io/reference/leavegroup )
Delete the chat (optional, if you want it removed from your device) (method: https://whapi.readme.io/reference/)
{
"success": true,
"processed": [
"[email protected]",
"[email protected]"
],
"failed": []
}{
"success": true
}If you are a group member
Get a group ID
Leave the group
Delete the chat (optional, if you want it removed from your device)
Last updated
Was this helpful?