Display caller/brand name in asterisk/vicidial

I want to display my users my brand name. Is is possible to send my brand name as my callerid to users.

Answers

  • Displaying name to customers can be done by sending "name tag" to your invite

    You can use below dialplan in order to do the same

    exten => _X.,1,AGI(agi://127.0.0.1:4577/call_log)
    exten => _X.,n,Set(display_name=MYBRANDNAME)
    exten => _X.,n,Set(display_complete_label="${display_name}" <${CALLERID(num)}>)
    exten => _X.,n,Set(CALLERID(name)=${display_name})
    exten => _X.,n,Set(CALLERID(all)=${display_complete_label})
    exten => _X.,n,Set(CONNECTEDLINE(all,i)=${display_complete_label})
    exten => _X.,n,Dial(${SIP-ACCOUNT}/${EXTEN},,tTo)
    exten => _X.,n,Hangup()
    


Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!