getExtensionsByType(extensionType) method

Retrieves the extensions 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 extension.

Returns

extensions: Type: {string,Extension}. An object containing the retrieved extensions.

Method usage example

In this example we subscribe to the onConnectionStateChanged event. When it fires, the connectionStateChanged function is called, which gets the current state as a parameter. If this status is "ACCESS_GRANTED", we try to retrieve the SIP extensions added in the Ozeki Phone System, then we create a call for each SIP extension and start it. (Code example 1).

OzWebClient.onConnectionStateChanged(connectionStateChanged);

function connectionStateChanged(status)
{
    console.log(status);
    if(status.State == ConnectionState.ACCESS_GRANTED)
    {   
		var sipExtensions = OzWebClient.helper.getExtensionsByType('SIP extension');

		for(var i in sipExtensions){
			newCall = OzWebClient.createCall(i);
			newCall.start();
		}	
	}
}
	
Code example 1 - getExtensionsByType(extensionType) method example

More information