Data from Zapier>N8N>Vapi API/CALL
# support
l
Ok newbie here so please be gentle. I have not had any issue building out my assistant for outbound calling but I am having trouble with getting the data needed for the assistant. In my scenario I am having an outbound calling assistant calling new leads coming from Listing 2 Leads/Meta ads. I need First (first name), Last (last name), Phone (client phone), Email (client email), Timeline (timeline for purchasing) and InquiryAddress ( address related to ad). I am able to pass the data from Zapier to N8N but when making the API call to Vapi all I get is a return code 400. I have followed the Create Call to the best of my ability but no luck. What is needed for me to have some help with getting some direction on where to go with this. https://cdn.discordapp.com/attachments/1396617478989418527/1396617479211450500/Vapi1.png?ex=687ebce2&is=687d6b62&hm=56acfa1703bfd9a60b3a249841faf19af0da59df03d52f09eb1ec29e3aed9b81&
c
Ensure you're sending a valid JSON payload including
assistantId
,
phoneNumberId
, and
customer.number
in E.164 format, and pass lead info like name, email, timeline, and inquiry address using
assistantOverrides.variableValues
with exact variable names e.g.
First
,
Timeline
that match your assistant's script all fields must be correctly named and formatted.. [https://docs.vapi.ai/assistants/dynamic-variables](https://docs.vapi.ai/assistants/dynamic-variables?utm_source=chatgpt.com) [https://docs.vapi.ai/calls/outbound-calling](https://docs.vapi.ai/calls/outbound-calling?utm_source=chatgpt.com)
l
All good info, I will check it out!
2 Views