Customer Activity Messages

SDK has exposed API to send customer activity status to agent.

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

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

  1. Sending Activity messages
  2. Accessing the Response
  3. Code Example
Public Methods

To send an activity messages to an agent, use the public methods exposed from the NuanMessaging Class.

Public Methods
  • public int getStatusCode()

    getStatusCode method returns following values which denotes the status of this request.


    200: Message was accepted by server

    400: Request has incorrect parameters.

    401: There is no such chat on server, chat should be started anew

    403: The user does not have sufficient privileges to use the API or to access the requested site.

    500: Server error.




	 NuanMessaging nuanMessaging = NuanMessaging.getInstance();
	 nuanMessaging.sendCustomerActivity(CustomerActivity.MINIMIZED);