Create group
Create a new WhatsApp group chat. Returns the group ID and optionally an invite link. 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
WhatsApp social account ID
Group name (max 128 characters)
length <= 128Group description (max 2048 characters)
length <= 2048Whether users need approval to join via invite link
"approval_required" | "auto_approve"Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.whatsapp.createWhatsAppGroupChat({ body: { accountId: 'account_abc123', subject: 'string', },});console.log(data);{
"success": true,
"group": {
"groupId": "string",
"inviteLink": "string"
}
}{
"error": "Unauthorized"
}List active groups GET
List active WhatsApp group chats for a business phone number. These are actual WhatsApp group conversations on the platform. Not available on [Coexistence](/platforms/whatsapp#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.
Get group info GET
Retrieve metadata about a WhatsApp group including subject, description, participants, and settings. Not available on [Coexistence](/platforms/whatsapp#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.