To get the Ringto address and Ringto type set in your DID number, use this function.
Method Signature
GetRingAddress($UserID,$Password,$DIDNumber)
Example Usage
We are providing a sample code in PHP which accesses and uses this service.
<?php
require_once “nusoap.php”;
$parameters=array(“584884″,”asdf5″,”44554645587”);
$soapclient= new soapclient(‘http://api.didx.net/webservice/WebEditURLServer.php’);
$SoapResult = array();
$SoapResult = $soapclient->call(“GetRingAddress”, $parameters,’urn:GetRingAddress’);
print_r($SoapResult);
?>
First argument is the DIDx User ID, second the password, third the DID number that you’ve bought.
Return values:
On successfull query, the method may return
Array with Ringto address and Ringto type
Error Codes
It will return an ‘Error Code’ in case there is some thing wrong with the information provided or there is no matching data in our record.
-1 = User ID does not exist
-2 = Your Password is Incorrect
-3 = This DID is not in your ownership.
-4 = No such DID Number exists.
-5 = Please provide a valid value for the fifth parameter