Skip to main content
POST
/
api
/
v1
/
groups
/
create
Create Group
curl --request POST \
  --url https://api.example.com/api/v1/groups/create \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_name": "<string>",
  "name": "<string>",
  "participants": [
    "<string>"
  ]
}
'
{
  "success": true,
  "jid": "<string>",
  "name": "<string>",
  "owner_jid": "<string>",
  "group_created": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.wazzapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string | null

Body

application/json

Request to create a WhatsApp group.

session_name
string
required

WhatsApp session name

Minimum string length: 1
name
string
required

Group name

Required string length: 1 - 100
participants
string[]
required

List of participant phone numbers (bare numbers)

Minimum array length: 1

Response

Successful Response

Response from creating a group.

success
boolean
required
jid
string
required
name
string
required
owner_jid
string | null
group_created
string | null