Skip to main content
POST
/
api
/
v2
/
conversations
/
{conversationId}
/
typing
Send an "agent is typing" indicator
curl --request POST \
  --url https://app.livechatai.com/api/v2/conversations/{conversationId}/typing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isTyping": true,
  "userId": "user_1234567890"
}
'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversationId
string
required

Unique identifier of the conversation

Example:

"chat_1234567890"

Body

application/json

Typing signal details

isTyping
boolean
required

true while composing, false when the agent stops typing

Example:

true

userId
string

ID of the agent who is typing. Optional — defaults to the workspace owner when omitted.

Example:

"user_1234567890"

Response

Typing signal broadcast successfully

status
string
Example:

"success"