Reputation: 2500
Can I make multiple outgoing calls to different numbers at the same time in Freeswitch?
I'm new to freeswitch and am trying to understand how it all works. Trying to achieve twilio like functionality whereby I can dial out to multiple numbers at once using the same phone number.
Upvotes: 0
Views: 973
Reputation: 1358
Yes, you can call several endpoints simultaneously by separating destinations with commas like this:
<action application="bridge" data="sofia/internal/100%${sip_profile},sofia/internal/101%${sip_profile}"/>
More details you can find here:
https://freeswitch.org/confluence/display/FREESWITCH/mod_dptools%3A+bridge
Upvotes: 1