a_burchfield
a_burchfield5mo ago

Twilio “Parameter Error”

I’m needing some help with something that I thought would be pretty simple, however it’s becoming a challange. Upon triggering an API from Flutter Flow I want to: - Pass the phone number from the user to build ship. ✅ - Generate a 4 digit number ✅ - Text them the 4 digit number via Twillio ❌ I can send SMS from build ship through twillio, but when I try pass my “phone” variable, I always get an error that: “Required parameter "params['to']" missing” Makes zero sense, becuase I feel like everything is linked up right.
No description
No description
No description
Solution:
Hi @a_burchfield Sent you an email with the fix, jus tadding the breif about the issue here too. The issue is that when testing you are passing the phone number as the body while testing but reading it as a query parameter in the Twilio node, you have to delete the required fields in the REST API Trigger due to which the request was never made through when tested/executed via variable.
Jump to solution
5 Replies
a_burchfield
a_burchfield5mo ago
Hi @Ambitious Alim I love your Youtube content and actually used your video to get this far! Is there anyway you can take a look at this? I posted a few days ago, and I don't know why the commuity is so quiet. What am I doing wrong? Keep up the great work! You're a phenomenal teacher and I apprecaite your efforts!
Gaurav Chadha
Gaurav Chadha5mo ago
Hi @a_burchfield, could you please share your workflow via-in-app support? We can take a look at your workflow. https://docs.buildship.com/support-messages.
a_burchfield
a_burchfield5mo ago
@Gaurav Chadha Yes!!! Thanks
Ambitious Alim
Ambitious Alim5mo ago
hey! so honored to be tagged here the buildship team will take good care of you
Solution
Gaurav Chadha
Gaurav Chadha5mo ago
Hi @a_burchfield Sent you an email with the fix, jus tadding the breif about the issue here too. The issue is that when testing you are passing the phone number as the body while testing but reading it as a query parameter in the Twilio node, you have to delete the required fields in the REST API Trigger due to which the request was never made through when tested/executed via variable.