2
votes

Is there any possibility to call the asterisk function in perl AGI script like CHANNEL function.

extension.conf

exten => _X.,1,NoOp(${CHANNEL(dahdi_channel)})

above NoOp will print the current call channel no. Same I need in perl AGI script.

1

1 Answers

4
votes

If you use perl Asterisk::AGI or fastagi version, you can use

$AGI->get_full_variable('${CHANNEL(dahdi_channel)}');