Reputation: 117
Scenario:
Question:
Is there a possibility to transfer call to a different extension during the call ?
Upvotes: 0
Views: 343
Reputation: 1212
Yes. This is very straight forward.
Presuming your DID is 1-234-567-8900 and your moble is 1-987-654-3210:
exten => _12345678900,1,NoOp(Call for DID to Mobile)
same => n, Dial(DAHDI/g1/19876543210,30,t)
same => n, HangUp()
The dial option "t" allows "...the called user to transfer the call by hitting the blind xfer keys (features.conf)"
Further reading: http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial
Upvotes: 1
Reputation: 15259
yes,but require guru level.
it can be done by writing special application or using conference or using AMI.
probably easy way is conference
Upvotes: 1