getOutsideLineById(id) method

Retrieves the outside line with the specified ID, or null if the outside line does not exist. It can only be used after the webclient successfully connected.

Parameters

id: It is a mandatory string parameter. The ID of the outside line.

Returns

outsideLine: Type: {string,Extension}. An object containing the retrieved outside line.

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 retrieve the specified outside line, then write its name on the console log. (Code example 1).

OzWebClient.onConnectionStateChanged(connectionStateChanged);

function connectionStateChanged(status)
{
    console.log(status);
    if(status.State == ConnectionState.ACCESS_GRANTED)
    {   
		var outsideLine = OzWebClient.helper.getOutsideLineById('VoipService1');
        console.log( outsideLine.extensionName );
	}
}
	
Code example 1 - getOutsideLineById(id) method example

More information