Jump to: navigation, search
 
Line 16: Line 16:
  
 
==Parameters==
 
==Parameters==
{{#jira:HTCC-27330}}
 
{{Chgbar_open}}
 
 
{|
 
{|
 
! Parameter
 
! Parameter
Line 25: Line 23:
 
| SendStartTypingNotification
 
| SendStartTypingNotification
 
|-
 
|-
 
| 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==

Latest revision as of 12:06, June 15, 2017

SendStartTypingNotification

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

Overview

This operation is performed to send notifications to other chat participants that the agent has started typing (for example: 'agent typing').

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

Parameters

Sample

HTTP Request

POST on /me/chats/{id}

{
  "operationName":"SendStartTypingNotification"
}

HTTP Response

Success

{
  "statusCode": 0
}

Failure

{
  "statusCode": an integer value above 0,
  "statusMessage":details
}

For details on the statusCode value, please refer to the All Methods sub-section of the Return Values page.

Notification

{
   "messages": [
       {
           "index": 4,
           "from": {
               "nickname": "TestName",
               "type": "Agent",
               "participantId": "007352CE764002A3"
           },
           "timestamp": "2014-01-09 12:13:15.009+0200",
           "visibility": "All",
           "type": "TypingStarted",
           "timestampSeconds": 1389262395009L
       }
   ],
   "notificationType": "NewMessages",
   "messageType": "MessageLogUpdated",
   "chatUri": "http://localhost:8080/api/v2/chats/0000Wa9CAM6W00FY"
}
Parameter Value
operationName SendStartTypingNotification
This page was last edited on June 15, 2017, at 12:06.
Comments or questions about this documentation? Contact us for support!