Feedback

  • Contents
 

dialer.campaignLogoutHandler Callback Property

Definition

dialer.campaignLogoutHander is invoked when agents log out of a campaign.

Compatibility

This callback is compatible with scripts for Scripter .NET Client or Interaction Connect.

Syntax

Dialer.campaignLogoutHandler (campaignName)

Parameters

campaignName

The name of the campaign the agent was logged out of.


Example

scripter.dialer.campaignLogoutHandler = handleLogoutChange;
function handleLogoutChange(campaignName) {
    alert(campaignName);
}