Skip to main content
POST
/
api
/
v1
/
groups
/
send
/
media
Send Group Media
curl --request POST \
  --url https://api.example.com/api/v1/groups/send/media \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_name": "<string>",
  "group_jid": "<string>",
  "media_url": "<string>",
  "media_type": "<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 media 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
media_url
string
required

URL of the media file

Minimum string length: 1
media_type
string
required

Media type

Pattern: ^(image|video|audio|document)$
caption
string | null

Optional caption

filename
string | null

Optional filename override (for documents)

Response

Successful Response

Response from sending a group message.

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