Vapi Assistant not getting the response from the t...
# support
n
I set up an API tool in MAKE that check emails and validate them. I set up everything according to documentation. The assistant calls the tool, the tool works by validating the email, sends the outcome to webhook response, but VAPI assistant returns: "result": "No result returned." In make.com the webhook works correctly: I will attach the screenshot of make configuration. https://cdn.discordapp.com/attachments/1277595559569526875/1277595560169177161/error-retunrning-tool-result.png?ex=66cdbd16&is=66cc6b96&hm=923731ce2268ea9594570ba22d553f9bf5a423d7742cf4c5980d4ac2fca929e4&
v
message has been deleted
@Neozys It sounds like there might be a discrepancy between the response your server is sending to the VAPI assistant and the expected JSON format. To assist you better, I'll need to see the screenshot of your Make.com configuration to understand how the tool is set up and how the response is being formatted. Please provide the screenshot, and I'll do my best to help you troubleshoot the issue. If the screenshot contains sensitive information, please ensure you redact it before sharing.
You can continue this conversation by mentioning me in the message.
Got it. Tagging @User for additional help.
n
this is the example when webhook response is usccessful, email is valid, but VAPI assistant says that it did not get response from validation tool https://cdn.discordapp.com/attachments/1277595559569526875/1277596526478360576/Screenshot_2024-08-26_125032.png?ex=66cdbdfc&is=66cc6c7c&hm=97b075a9c6a2dafb84959089e6d96ca9292b3dbe32bfb6d9c0439fabf49d0a6a&
o
@User I have a similar issue opened a new thread as well https://discord.com/channels/1211482211119796234/1277620196953030686
s
can you share the call id,
n
yes, this is one of the multiple calls tested: 9e549d0a-307d-4764-b643-83c4ea46e35a
j
Your json looks incorrect. You're missing a curly brace, the corrected json should be:
Copy code
{
  "results": [
    {
      "toolCallId": "call_34QcI5dKOd4UdZYShSKtLqEu",
      "result": "The email address is valid"
    }
  ]
}
n
great stuff, you were right, now it works, thank you so much!
2 Views