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.
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.



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.
