User Tools

Site Tools


Sidebar

en:objects:simnet:functional:get_numbers_status

get_numbers_status

get_numbers_status($country=0); - get the number of available numbers.

the input Function accepts parameters:

  • $country – number country, 0 - Russia, 1 - Ukraine, 2 - Kazakhstan, 3 - China, 4 - Philippines, 5 - Myanmar, 6 - Indonesia,7 - Malaysia, 8 - Kenya, 9 - Tanzania, 10 - Vietnam, 11 - Kyrgyzstan, 12 - USA, 13 - Israel, 14 - Hong Kong, 15 - Poland,16 - great Britain, 17 - Madagascar, 18 - Congo, 19 - Nigeria, 20 - Macau (optional, by default, as specified in the settings).
    You can also use the full name of the country:
    argentina
    azerbaijan
    brazil
    cambodia
    canada
    chad
    china
    colombia
    egypt
    england
    france
    gambia
    ghana
    haiti
    hongkong
    india
    indonesia
    ireland
    ivorycoast
    kazakhstan
    kyrgyzstan
    laos
    macao
    madagascar
    malaysia
    morocco
    myanmar
    nigeria
    panama
    philippines
    romania
    russia
    serbia
    southafrica
    thailand
    usa
    uzbekistan
    vietnam
    yemen


    After testing, the function returns the result of its work to the script :
  • string – a string with the service's response in json format: {"at_0":"330","fb_0":"330","gm_0":"323","go_0":"323","ig_0":"326","mb_0":"330","mm_0":"330","ok_0":"330","or_0":"315","ot_0":"315","qw_0":"327","tg_0":"329","tw_0":"330","vi_0":"330","vk_0":"292","vr_0":"330","wa_0":"330","wb_0":"328","we_0":"330","ya_0":"203","ym_0":"13"}.
    Where to the dash - the name of the service, followed by whether to enable forwarding. 0 - do not enable. 1 - enable.
    Possible error:
    BAD_KEY - invalid API key
    ERROR_SQL - SQL server error

    PHP example:

    <?php $xhe_host = "127.0.0.1:7010";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
      $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> simnet->".basename(__FILE__)."</font> <hr>";
     
    //set the service api key
    $simnet->api_key = '3161df9b1fe1ccb8cfd7dA91db765de8';
    //get the number of numbers
    //a country
    /* $country - the country of the number, 0 - Russia, 1 - Ukraine, 2 - Kazakhstan, 3 - China, 4 - Philippines, 5 - Myanmar, 6 - Indonesia, 7 - Malaysia, 10 - Vietnam, 11 - Kyrgyzstan, 12 - USA, 13 - Israel, 14 - Hong Kong, 15 - Poland, 16 - England, 17 - Madagascar, 18 - Congo, 19 - Nigeria, 20 - Macau, 21 - Egypt, 23 - Ireland, 24 - Cambodia, 25 - Laos, 26 - Haiti, 27 - Cote d'Ivoire, 28 - Gambia, 29 - Serbia, 30 - Yemen, 31 - South Africa, 32 - Romania, 34 - Estonia, 35 - Azerbaijan, 36 - Canada, 37 - Morocco, 38 - Ghana , 39 - Argentina, 40 - Uzbekistan, 41 - Cameroon,(optional, if not specified, the default quantity will be given according to the setting in the left menu).*/
    $country = 0;
    //cellular operator megafon, mts, beeline, tele2, any
    //only for RF
    $operator = 'any';
    echo $simnet->get_numbers_status($country, $operator);
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

     

    C# example:

     

    Java Script example:

     
  • en/objects/simnet/functional/get_numbers_status.txt · Last modified: 2020/10/14 11:23 (external edit)