Forum Replies Created

Viewing 15 posts - 496 through 510 (of 1,495 total)
  • Author
    Posts
  • Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12691

    Hello Mark,

    My above message for API was about the response of support team , Our code is using same API which they suggested for.
    Good news is that now we are getting all the updated port out list as inteliquent but site speed is still same.
    I have made changes on admin port out table and added all the functionality inteliquent have on there page, You can now ask admin to test. If they want to changes existing table design also then they have to give template for the new design otherwise Port out table task is now been completed.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12689

    Hello Mark,

    I checked the Support team response for the API and they are naming the same API which i already using.
    You know the what the problem is here, First i have to get list of port out data by calling API(orderList) then calling Another APi(orderDetail) to get the portout detail one by one using order number.
    The main resaon of long time loading is calling APi(orderDetail) for every order and i don’t think support team can do anything in it.

    I made some changes in port out page and integrated export numbers and export orders functionality as it is in inteliquent.You can check and give your feedback as soon as possible, Because i want all the task should be tested as i finish any task.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12685

    Hello Mark,

    Send this below message to the Support Team:

    ————————————————————————————————————
    Is there any api url where i can get all these listed detail from one place. Currently i am getting all these detail from multiple interconnected API and it is making web page too slow.If there is any thing i can do to speed up web page loading please suggest.

    port_number, pon, submit_date, desired_due_date, confirm_due_date, port_status, tn_quantity, tn_quantity, streetNum, streetName, tn, rateCenter, province, endUser, authName, accountNum, tnStatus, portOutPin, portDt, postalCode, city, streetType
    ————————————————————————————————————
    Mark, you are also free to advise me if you have any idea or input for it.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12684

    Hello Mark,

    Check this link for screenshot (https://ibb.co/FhMsb9p). There is a normal entry for end with 8888 it is not wildcard entry. The reason behind getting 1000 number is not wildcard.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12682

    Hello Mark,

    I am checking the code for wilcard issue.
    How is it possible the same code behave different for different execution time ? If it once worked it should work every time. But i will check the code if there is some issue. Can you please ask for some entry for wildcard so i can also test by adding from my side.

    I did fixed the limit 10 digits for the wilcard.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12678

    Hello Mark,

    I was started working on new job that’s why i sent you the error code for API response so i can get reason and do fix them.
    Currently i am going to work on export functionality like we have on inteliquent.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12676

    Hello Mark,

    Thanks for post#12674.
    Every thing is ok and safe for now.
    There is heavy rain fall in my city that’s why.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12675

    Hello Mark,

    Say thanks to support team for API, I think now it is working .

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12672

    Hello Mark,

    See my city condition right now

    https://portal.voip.us/public/temp/WhatsApp%20Image%202024-08-27%20at%2011.32.52.jpeg

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12670

    Hello Mark,

    check this link :(https://portal.voip.us/public/temp/errorresponse.txt)

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12664

    Hello Mark

    This link https://portal.inteliquent.com/CustomerPortal/caseSummary.htm you provided is not accessible on my end.
    screen-shot: https://ibb.co/tX27tRS

    I am not getting your “we are looking on Inteliquent portout table it shows webhook address poiting to voip?” line.

    Yesterday i was working on EN site for bug fixing so i did not get time to look on new added task, I will see to day and tell you about the progress.

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12666

    Hello Mark,

    Do you want same look and functionality as inteliquent for port out upgrade ?
    Can you please be specific about your need?

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12665

    Hello Mark,

    Find #post-12664 .

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: Voip Repair 24 #12650

    Hello Mark,

    For #12631 : No web-hooks were involved in our functionality. I just used Curl to fetch data from the API.
    ———————————————————————————————————————————————–
    Here is a snippet for to fetch data of portout order, It takes time to generate response because of that the portout list page takes time to load.

    $port_out_url = ‘https://services.inteliquent.com/Services/1.0.0/orderList’;

    $Data = ‘{
    “privateKey”: “Z0Ainfdg0su6MTfoGgnRhk0B_YYa”,
    “productId”: 114,
    }’;

    $Auth_Carrier = ‘Authorization:Bearer ‘ . $token_id;
    $port_out_curl = curl_init($port_out_url);
    curl_setopt($port_out_curl, CURLOPT_POST, 1);
    curl_setopt($port_out_curl, CURLOPT_HTTPHEADER, array(‘Content-Type: application/json’, ‘charset:UTF-8’, $Auth_Carrier));
    curl_setopt($port_out_curl, CURLOPT_POSTFIELDS, $Data);
    curl_setopt($port_out_curl, CURLOPT_SSL_VERIFYHOST, 2);
    curl_setopt($port_out_curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($port_out_curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($port_out_curl, CURLOPT_TIMEOUT, 120);

    $port_out_result = curl_exec($port_out_curl);
    $port_out_result_Data = json_decode($port_out_result, true);

    Hope this will help

    Thank you

    Nishit Shan
    Participant
    Post count: 1495
    in reply to: API Statistics #12649

    Hello Mark,

    Please provide EN updated id and password for admin.

Viewing 15 posts - 496 through 510 (of 1,495 total)