Page 1 of 1

Caller ID

PostPosted: Wed Aug 18, 2021 2:21 am
by Zaraab
Is there any function / application for dialplan by which I can set a caller ID so that whenever I am using the dialplan for making a call, the receiver of the call will see my that caller ID?

Its not about going to the admin panel, campaign setting etc.. I just want to know if there is any other way to do it directly in the dialplan entry maybe in the extensions.conf I guess.

Re: Caller ID

PostPosted: Wed Aug 18, 2021 3:41 am
by striker
you can use the dialplan Set function for CALLERID(num) variable to set callerid

eg
exten => _9X.,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _9X.,n,Set(CALLERID(num)=12345678)
exten => _9X.,n,Dial(SIP/trunk/${EXTEN:1},,tTo)
exten => _9X.,n,Hangup()

this wil set callerid as 12345678

Re: Caller ID

PostPosted: Wed Aug 18, 2021 6:50 am
by Zaraab
Thank you MR. Striker

I cant stop appreciating you. I have seen your scratch installation method. Learnt a lot!