From Bright Pattern Documentation
Contents
- Introduction
- Tutorial
- General Information
- Project and Code Setup
- Threading Model
- 1 Agent Login
- Agent State
- Services
- Making a call
- Transfers
- Conference
- Receiving a call
- Call States
- Wrapping Up After-call Work
- Entering Dispositions and Notes
- Directory
- Recent Interactions
- Favorites
- Notifications
Desktop Integration API .NET Version Tutorial
Agent Login
The AgentPlace object provides the following methods to log in to Agent Desktop for different phone device types:
- for softphone (isSoftphone=true) or default phone (isSoftphone=false) option
- public void loginOnDefaultPhone(string adHost, string loginId, string domain, string password, bool isSoftphone, bool force = false);
- for internal phone (isInternal=false) or external phone (isInternal=false) option
- public void loginOnHardPhone(string adHost, string loginId, string domain, string password, string phoneNum, bool isInternal, bool force = false);
- for nailed connection (option "dial-in and keep line open")
- public void loginOnVirtualPhone(string adHost, string loginId, string domain, string password, bool force = false);
- for no phone option
- public void loginNoPhone(string adHost, string loginId, string domain, string password, bool force = false);
After authentication, the following event will be raised to indicate whether the login is successful:
- public event LoggedInCallback loggedInCallback;
The following method is used to log out:
- public override ResultCode logout()
And the following event will be raised once logout is completed:
- public event LoggedOutCallback loggedOutCallback;