
Announcements
No idea why this flow won't save, there are no flow checker errors. My expression in the twilio connector is just "
Hi @RommelSunga,
You are using the triggerFormDataValue function, that function returns a string with a single value that matches a key name in a trigger's form-data or form-encoded output.
The format for using this function is
triggerFormDataValue('<key>')
So, the syntax of the expression in your setup is correct. But it does not recognize the to_number as a key. I would say that is probably the reason why it does not save.
As far as I can tell you are just after the to_number property of the outputs body of the trigger action. Could you try the triggerBody function instead:
triggerBody()?['to_number']