Get DID Call logs

URL: http://www.virtualphoneline.com/webservice/CFMSGetCallLogs.php

  • Method:GetCallLogs (UserID, Pass, DIDNumber)
  • UserID:Numeric Account ID or the email address registered with sandbox.virtualphoneline.com
  • Pass: MD5 Encrypted Password
  • DIDNumber
  • Return Type: Struc
  • Return Values:

    • Upon successfull authentication, the method will return an array containing following feilds

    • DIDNumber
    • Caller ID
    • RingToType

  • Example Code:
    • $parameters=array("000000",md5("ae762636272ff276236"),1567232323);
    • $soapclient= new soapclient('http://sandbox.virtualphoneline.com/webservice/CFMSGetCallLogs.php');
    • $SoapResult = array();
    • $SoapResult = $soapclient->call("GetCallLogs", $parameters,'urn:GetCallLogs');

    • print_r($SoapResult);
    • exit;