1-877-548-3001 Sign in About Contact
Developer

POST

/api/chat/{id}/set_typing_status

Set the typing status for the operator or visitor in the specified chat session

Scope:

client

or

operator

Request Parameters

Path

2

id

required

The id of the chat where typing status is to be set

Query

status

required

The boolean representation of the typing status

Response

Schema

{}

payload

The chat typing status data

{}

status

The boolean representation of the typing status

A

status

The system response status. Will be ok or error

curl

example request

1

curl -X POST -d '{"status":true}'

2

-H "Content-Type: application/json"

3

-H "Authorization: Bearer {{Oauth Token}}"

4

https://developer.livehelpnow.net/api/chat/{{102317790}}/set_typing_status

example response

      
        

1

 {

2

   "payload": {

3

     "status"

: true

4

   },

5

   "status": "ok"

6

 }