Skip to main content
POST
/
api
/
v1
/
groups
/
send
Send Group Text
curl --request POST \
  --url https://api.example.com/api/v1/groups/send \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_name": "<string>",
  "group_jid": "<string>",
  "text": "<string>"
}
'
{
  "success": true,
  "message_id": "<string>",
  "status": "<string>",
  "run_id": "<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 send a text message to a group.

session_name
string
required

WhatsApp session name

Minimum string length: 1
group_jid
string
required

Group JID (e.g., [email protected])

Minimum string length: 1
text
string
required

Message text

Minimum string length: 1
message_id
string | null

Optional message ID

Response

Successful Response

Response from sending a group message.

success
boolean
required
message_id
string
required
status
string
required
run_id
string | null