I'm trying to call multiple numbers at the same time right from the start, if someone pickup others will be automatically hang up.
The issue is I can only see that feature under TWIML>Dail and to use that feature you need to initiate a call first.
How do I initiate a call immediately to multiple parties?
I tried:
twilio_client.client.calls.create(
twiml=twiml,
to=["+10000000","+10000000"],
from_="+10000000"
)