GetServerInfo

GetServerInfo : Returns information about server where connection is made

What is returned ?
Server EndPoint where enduser is connected (useful while debugging issues)

 

Sample request(JavaScript)
{
MessageType: "GetServerInfo",
};
var message = JSON.stringify(request);
websocket.send(message);
Example of returned data in JSON format
{
"ServerID":"2152-24",
"MessageType":"ServerInfoResult"
}
×

Was this helpful?