Knowladge Base

1C GET A LIST OF AREAS OF AVAILABLE DIDs

This method returns the list of available DID’s Area list by country code and Vendor Rating in the form of an array. The user is required to give User ID, Password, country code and Vendor Ratings as arguments and he’ll get a list of available DID’s area list of that country. User can supply Vendor Rating range to get a list of available DID’s areas by Vendor Rating and country code. If there is no range is defined than it will get a list of DID’s areas with all vendor ratings.

 

Example URL:

http://newapi.didx.net/DidxApis/api/getDIDArea.php?UserID=700290&Password=XXXX&CountryCode=1

 

Example Code in PHP:

<?php

$curl_handle = curl_init();

$url = "http://newapi.didx.net/DidxApis/api/getDIDArea.php?UserID=700290&Password=XXXX&CountryCode=1";

curl_setopt($curl_handle, CURLOPT_URL, $url);

curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);

$curl_data = curl_exec($curl_handle);

curl_close($curl_handle);

$response_data = json_decode($curl_data);

print_r($response_data);

die();

?>

 

Input Fields:

    1. UserID
    2. Password
    3. CountryCode
    4. VRatingFrom
    5. VRatingTo
    6. VendorIDs(comma separated)
    7. RateFrom
    8. RateTo
    9. CountryID

 

Returned Fields:

    1. AreaCode
    2. Description

 

Error Codes:

In case of any incorrect information provided by the user or in case of no matching data, an error code will be returned. Error codes correspond to the following messages:

-1 = User ID does not exist

-2 = Your Password is Incorrect

-3 = There are no rated DIDs’ Areas avaiable in our record.