Reputation: 525
I want to create a outbound conferencing application using asterisk in windows - the user can enter a few phone numbers and the system calls all the participants and adds them to the conference. I read a little bit about asterisk APIs, and I saw that I can use the manager API and AGI. I looked at the command reference and I couldn't find any conference related commands. Can this be done using any of these APIs or other APIs?
Thanks.
Upvotes: 1
Views: 4134
Reputation: 2884
In Asterisk you have two potential options for conferencing.
Both have AMI actions that you can use to interface with them, documented here. You can also find more information on ConfBridge in Asterisk here.
Upvotes: 2
Reputation: 1
You can use AsterNET to create Voice applications on .NET (C#) https://github.com/skrusty/AsterNET
Upvotes: 0
Reputation: 15259
You can use Exec command of AMI/AGI api.
Using that, you can get any command from asterisk dialplan.
http://www.voip-info.org/wiki/view/Asterisk+AGI
Using exec:
http://www.voip-info.org/wiki/view/Asterisk+-+documentation+of+application+commands
Upvotes: 0