Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

Agent/AI-Bot will call this when they are typing a message in live chat message
POST https://services.leadconnectorhq.com/conversations/providers/live-chat/typing

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Body

locationId
string
default:"ve9EPM428h8vShlRW1KT"
required
Account Id
isTyping
string
default:"True"
required
Typing status
visitorId
string
default:"ve9EPM428h8vShlRW1KT"
required
visitorId is the Unique ID assigned to each Live chat visitor. visitorId will be added soon in GET Contact API
conversationId
string
default:"ve9EPM428h8vShlRW1KT"
required
Conversation Id

Respuestas

success
boolean
required
{
  "success": true
}
{}
{}
{}

Ejemplo

curl -X POST 'https://services.leadconnectorhq.com/conversations/providers/live-chat/typing' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
  "locationId": "ve9EPM428h8vShlRW1KT",
  "isTyping": true,
  "visitorId": "ve9EPM428h8vShlRW1KT",
  "conversationId": "ve9EPM428h8vShlRW1KT"
}'