Delete group
Delete a WhatsApp group and remove all participants. Not available on [Coexistence](/platforms/whatsapp#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Group ID
Query Parameters
WhatsApp social account ID
Response Body
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsapp.deleteWhatsAppGroupChat({ path: { groupId: 'group_abc123', }, query: { accountId: 'account_abc123', },});console.log(data);{
"success": true,
"message": "string"
}{
"error": "Unauthorized"
}{
"error": "Not found"
}Update group settings POST
Update the subject, description, or join approval mode of a WhatsApp group. Not available on [Coexistence](/platforms/whatsapp#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.
Add participants POST
Add participants to a WhatsApp group. Maximum 8 participants per request. Not available on [Coexistence](/platforms/whatsapp#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.