From Bright Pattern Documentation
< 5.8:Embedded-agent-desktop-api-specification‎ | Events
Revision as of 04:13, 29 May 2024 by BpDeeplTranslateMaintenance (talk | contribs) (Updated via BpDeleteTranslateTags script)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
• 5.19 • 5.3 • 5.8


onAgentLogin(callback)

Shows whether an agent is logged in or out of Agent Desktop.

Request

Syntax

window.bpspat.api.onAgentLogin(callback)
callback = function(data) {
}

Arguments

Parameter Type Description
callback function JavaScript method executed when API method request is completed


Response

The response object may contain the following fields.

Name Data Type Description Example
agent_id string agent username "john.smith"
login boolean Whether agent is logged in (true) or not (false) false

Example

 {
  "command": "LOGIN_CHANGED",
  "data": {
    "agent_id": "christy.borden",
    "login": false
  }
 }
< Previous | Next >