Reputation: 11
I am developing a custom application to control an Asterisk based pbx using ami/agi interface. What I have to do is:
Everything should be done using ami/agi interfaces. I succesfully developed everything up to point 5) but I am unable to understand how to transfer (using ami/agi) the parked call to a runtime-defined extension.
Can someone give me an idea on how to do it ?
Upvotes: 1
Views: 958
Reputation: 15259
Simplest way is just use async agi or conference or Wait extension instead of parking, i.e redo parking-like logic yourself.
That way you will 100% know channel name and how to transfer it back.
Considering you are gooing use ami - AsyncAGI is best option for you.
Upvotes: 0
Reputation: 72
you should originate from Local/XXX@parked_context to the extension you want.
something like this..
Upvotes: 0