getOutsideLinesByType(outsideLineType) method

Retrieves the outside lines whose type equals to the specified type. It can only be used after the webclient successfully connected.

Parameters

extensionType: It is a mandatory string parameter. The type of the outside line.

Returns

outsideLines: Type: {string,Extension}. An object containing the retrieved outside lines.

Method usage example

In this example we subscribe to the onConnectionStateChanged event. When it fires, the connectionStateChanged function is called, which gets the current status as a parameter. If this status is "ACCESS_GRANTED", we query the WEBPHONE outside lines from the Ozeki Phone System, then write their status on the console log. (Code example 1).

OzWebClient.onConnectionStateChanged(connectionStateChanged);

function connectionStateChanged(status)
{
    console.log(status);
    if(status.State == ConnectionState.ACCESS_GRANTED)
    {   
		var outsideLines = OzWebClient.helper.getOutsideLinesByType(OutsideLineType.WEBPHONE);
		for(var i in outsideLines){
			console.log(outsideLines[i].extensionStatus); 
		}
		
	}
}
	
Code example 1 - getOutsideLinesByType(outsideLineType) method example

More information