POST
Group Video Call Link
Create a WhatsApp group call link (audio or video).
API endpoint
https://waclient.com/api/create_group_video_call_linkExample:
curl -X POST \
'https://waclient.com/api/create_group_video_call_link' \
-H 'Content-Type: application/json' \
--data '{
"type": "video",
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"created": true,
"type": "video",
"token": "EXAMPLE",
"link": "https://call.whatsapp.com/video/EXAMPLE"
}
}| Parameter | Description |
|---|---|
| type | audio or video (default video) (Optional) |
| timeout_ms | Optional link timeout in ms (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |