Caller ID in Plivo

720 Views Asked by At

I am using Plivo API for calling and need to get my call to display a valid Caller ID Number. I am using a Callback URL :

<Response>
    <Record action="http://173.255.193.124/~ramacrm/CallWithPlivo/vtigercrm/plivo/call/recording" startOnDialAnswer="true" redirect="false" callerId="+9198102****"/>
    <Dial>
        <Number>+91880231****</Number>
    </Dial>
</Response>

Is there anything that I am doing wrong as I am working on this referring the Plivo API Documentation - Here

1

There are 1 best solutions below

0
On

You need to put the CallerId in the Dial verb, so:

<Dial action="your_action_url" 
callbackUrl="your_callback_url"
callerId="441903xxxxxx" method="POST" timeout="25"><Number>4479xxxxxx</Number></Dial>