Inbound Test Call
# support
c
Yes, you can try this request:
Copy code
curl -X POST https://api.vapi.ai/call/web \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "assistantId": "your-assistant-uuid"
  }'
Once you submit this request payload, the response will contain a webCallUrl that you can use to connect to the call. This is effectively the same function as the
Talk to Assistant
on the dashboard. Let us know if you have any questions
s
Thank you for your response. I was able to get the web call URL, but I'm not hearing any assistant—what I see looks more like a meeting interface. Could you please guide me on how to properly implement or use the web call URL? Thank you. https://cdn.discordapp.com/attachments/1400380134489456742/1401762056322945064/image.png?ex=68917425&is=689022a5&hm=db9ce979d9dfe5bbe760ab20d651de1d7e7569d742317a4116b4ea26f5aa2295&
c
To troubleshoot, make sure your assistant has monitorPlan.controlEnabled set to
true
Copy code
{
  "monitorPlan": {
    "controlEnabled": true,
    "controlAuthenticationEnabled": false  // or true if you want auth
  }
}
Please note that the controlUrl is for controlling the assistant. If you want to stream the assistant audio real-time, be sure to use the listenUrl. Are is some documentation regarding the instructions for both listenUrl and controlUrl
4 Views