0

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

4

1 回答 1

1

您需要将 CallerId 放在 Dial 动词中,因此:

<Dial action="your_action_url" 
callbackUrl="your_callback_url"
callerId="441903xxxxxx" method="POST" timeout="25"><Number>4479xxxxxx</Number></Dial>
于 2015-02-08T14:45:29.840 回答