Create Call Link

Feature Not Supported

Create a WhatsApp call link if the current WhatsApp engine supports it.

POSThttps://api.waplix.io/api/v1/client/create_call_link
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

type
stringReq

Required: audio or video

Usage Notes
Unsupported by the current WhatsApp engine.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/client/create_call_link" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "type": "video"
}'
Success Response
Response · 200 OK
{
  "success": false,
  "message": "Hello from Waplix API docs.",
  "data": null,
  "error": {
    "code": "FEATURE_NOT_SUPPORTED",
    "message": "Hello from Waplix API docs."
  }
}
Was this page helpful?