Sillent Calls
# support
s
call ids - - 196acd9f-d605-4096-9137-fe8790a5fdda - 9f001e59-4beb-4bf5-b562-b93572f2cdb6 - ad284f6a-6cea-408d-994e-e2aea480529d The bot did not respond at all.
v
Hi @sumitguha, I'm an AI assistant for Vapi. I'll analyze available sources and get back to you shortly.
----------------------------- **While I generate an answer, here are some sources that might be helpful**: * [List Calls]() * [Get Call]() * [Create Phone Call]() * [I'm having trouble connecting into the webcall URL created by "Create Web Call"]() -----------------------------
### Answer To investigate silent calls with the provided call IDs, you can use the "Get Call" API to retrieve detailed information about each call. This will help you identify any issues related to the bot's response or lack thereof. Here’s how you can do it using cURL:
Copy code
sh
curl --request GET \
--url https://api.vapi.ai/call/196acd9f-d605-4096-9137-fe8790a5fdda \
--header 'Authorization: Bearer <token>'
Copy code
sh
curl --request GET \
--url https://api.vapi.ai/call/9f001e59-4beb-4bf5-b562-b93572f2cdb6 \
--header 'Authorization: Bearer <token>'
Copy code
sh
curl --request GET \
--url https://api.vapi.ai/call/ad284f6a-6cea-408d-994e-e2aea480529d \
--header 'Authorization: Bearer <token>'
Replace
<token>
with your actual authorization token. This will return details like call status, transcript, and any errors encountered during the call [(1)]() .
Got it. Tagging @User for additional help.
s
checking