I'm trying to place a call and answer it within the dial plan. Essentially I'm looking for something like this:
Sip phone dials 000-000-0000
exten => _0000000000,1,Dial(0000)
exten => _0000,1,Answer()
same => n,NoOp('0000 has answered')
; other stuff...
I've tried exten => _0000000000,1,Answer()
which works for answering the call and playing audio files but I need the dial and answer due to some ami event listeners runnning else where.