blue_zinc
blue_zinc

Reputation: 2500

Parallel outgoing calls: Freeswitch

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

Answers (1)

os11k
os11k

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

Related Questions