getCallHistoryOfExtension(extensionId, properties) method

Initiates a getCallHistory request with the specified extension ID. It can only be used after the webclient successfully connected.

Parameters

extensionId: It is a mandatory string parameter. The specified extension ID.

properties: The properties object containing filter parameters (same parameters apply as in OzWebClient.getCallHistory)

Exceptions

Will throw an exception if the extension ID is not specified.

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 subscribe to the onCallHistoryInfoReceived event. When it occurs, the callHistoryInfoReceived function is called. Then we try to retrieve the call history of the specified extension and write it on the console log. (Code example 1).

OzWebClient.onConnectionStateChanged(connectionStateChanged);

function connectionStateChanged(status)
{
    console.log(status);
    if(status.State == ConnectionState.ACCESS_GRANTED)
    {      	
    	OzWebClient.onCallHistoryInfoReceived(callHistoryInfoReceived);
	}
}

function callHistoryInfoReceived(data){
	var callHistory = OzWebClient.helper.getCallHistoryOfExtension('1000',{
        													pageNumber: 0,
        													pageRows: 10});
    console.log(callHistory);
}

	
Code example 1 - getCallHistoryOfExtension(extensionId, properties) method example

More information