v1

latestOpenAPI 3.1.02026-07-1413113265.9 KB
client

create call link

Creates a call link for a scheduled call.

post/instances/{id}/client/action/create-call-link

Path parameters

idinteger required

Instance ID

Request body

callType'video' | 'voice' required

Type of call to create

Example request

{
  "callType": "video"
}

Response

Call link created successfully

status'success' | 'error'
instanceIdstring

Example response

{
  "status": "success",
  "instanceId": "1",
  "data": {
    "link": "<call-link>"
  }
}