Skip to main content

When a customer calls when the call is Answered the script should pass the number into the search for client info of https://app.ezlynx.com 

What should the rest be.

 

We were using what is in the TAG line below. The URL does open but not the client info.

I also tried using the script below and changing Caller_number_raw to just P for phone. It opens the client files but all of them not just one.

 

Please clarify your question. I don’t really understand what you asked and see no script you mentioned.


https://app.ezlynx.com is my program website (cloud based customer data file)

It appears from within your software i would then use /myintegrations.htm?number=%P

This should transfer the incoming call to my Client files like AMS360 or others but mine is EzLynx.com

 


Yes it does make a HTTP GET call to your web server and pass along the caller id for %P.

Here is my quick test with my local host.

 

And in my web app server

app.get('/about', function (req, res) {
    console.log(req.query)
    res.render('about')
})

 

And here is the console output

{ fname: 'Paco Vu', number: '(650) 224-XXXX' }


Actually https://app.ezlynx.com/applicantportal/Search/Index?searchPhrase=%P

Works as it should. Just kept at it until it worked. Not bad for a 73 year old nerr


Reply