List active groups
List active WhatsApp group chats for a business phone number. These are actual WhatsApp group conversations on the platform.
Not available on Coexistence numbers. Requires a Cloud API-only number.
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
WhatsApp social account ID
Max groups to return
25value <= 1024Pagination cursor
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.listWhatsAppGroupChats({ query: { accountId: 'account_abc123', },});console.log(data);{
"groups": [
{
"id": "string",
"subject": "string",
"createdAt": "string"
}
],
"paging": {
"cursors": {
"after": "string",
"before": "string"
}
}
}{
"error": "Unauthorized"
}Request display name change POST
Submit a display name change request for the WhatsApp Business account. The new name must follow WhatsApp naming guidelines (3-512 characters, must represent your business). Changes require Meta review and approval, which typically takes 1-3 business days.
Create group POST
Create a new WhatsApp group chat. Returns the group ID and optionally an invite link. Not available on [Coexistence](/platforms/whatsapp/connection#whatsapp-business-app-coexistence) numbers. Requires a Cloud API-only number.