Jump to: navigation, search
(added text, messageType, and treatAs parameters)
Line 17: Line 17:
  
 
==Parameters==
 
==Parameters==
 +
{{Chgbar_open}}
 
{|
 
{|
 
! Parameter
 
! Parameter
Line 23: Line 24:
 
| operationName
 
| operationName
 
| SendStopTypingToAgentNotification
 
| SendStopTypingToAgentNotification
 +
|-
 +
 +
| text
 +
| (Optional) The text to send to the customer.
 +
|-
 +
| messageType
 +
|(Optional) Defines the message type. Note that this parameter must be provided together with the '''text''' parameter.
 +
|-
 +
| treatAs
 +
| (Optional) Specifies how the message should be treated: Normal or System. Note that this parameter must be provided together with the '''text''' parameter.
 
|}
 
|}
 +
{{Chgbar_close}}
 +
  
 
==Sample==
 
==Sample==

Revision as of 10:06, June 12, 2017

SendStopTypingToAgentsNotification

This operation is part of the Chat API section of the Web Services API.

Overview

This request sends a notification to all agents who are in a conference or consultation. Customers do not see this communication.

Request URL /api/v2/me/chats/{id}
HTTP Method POST
Required Features api-multimedia

Parameters

Parameter Value
operationName SendStopTypingToAgentNotification
text (Optional) The text to send to the customer.
messageType (Optional) Defines the message type. Note that this parameter must be provided together with the text parameter.
treatAs (Optional) Specifies how the message should be treated: Normal or System. Note that this parameter must be provided together with the text parameter.


Sample

Request

POST api/v2/me/chats/0071023821aec011
{
  "operationName": "SendStopTypingToAgentNotification"
}

Response

{
  "statusCode": 0
}

Notification

{
   "messages": [
       {
           "index": 5,
           "from": {
               "nickname": "TestName",
               "type": "Agent",
               "participantId": "007352CE764002A3"
           },
           "timestamp": "2014-01-09 12:13:15.031+0200",
           "visibility": "Agents",
           "type": "TypingStopped",
           "timestampSeconds": 1389262395031L
       }
   ],
   "notificationType": "NewMessages",
   "messageType": "MessageLogUpdated",
   "chatUri": "http://localhost:8080/api/v2/chats/0000Wa9CAM6W00FY"
}
Comments or questions about this documentation? Contact us for support!