System Message API

The purpose of the System Message API call is to send a system message from the Application to the agent.

Examples system messages are: Message window minimized, Message window restored.

The API method for sending the system message is exposed from the NuanMessaging class. You must have the instance of NuanMessaging class.

  1. Using SystemMessageAPI
  2. Accessing the Response
  3. Code Example
Public Methods

To send a system message to an agent, use the public methods exposed from the NuanMessaging Class.


	 
	 let message = "Message window minimized.";
	 let nuanMessaging = NuanMessaging.getInstance();
	 nuanMessaging.sendActivityMessage("customerRestoreWindow");