I have not been able to send SMS to multiple numbers with Twilio Notify using Postman. Does anyone know a correct syntax for two numbers I could try?
If I enter just one number in the value field for the ToBinding
parameter it works
{"binding_type":"sms", "address":"+1651000000000"}
but if I try entering two numbers like this
['{"binding_type":"sms", "address":"+1651000000000"}',
'{"binding_type":"sms", "address":"+1651000000000"}']
I get the error:
{"code": 20001,
"message": "Can not convert incoming parameters to Notification object: Parameter 'ToBinding' is invalid",
"more_info": "https://www.twilio.com/docs/errors/20001",
"status": 400}
Yes, I have seen How to Send SMS Messages to Multiple Recipients with Twilio Notify? but it does not answer my question as it is creating an array in a language to passthrough and I just want to do a simple test with Postman.