ChatSend Docs
Messages

Start Typing Indicator

Show typing to the recipient.

Endpoint

Show typing to the recipient.

POST /startTyping

Authentication

Every request must include a Bearer token in the Authorization header. Missing or invalid API keys return 401 Unauthorized.

Authorization: Bearer YOUR_API_KEY

Request Body

FieldTypeRequiredDescription
sessionstringYesSession ID
tostringYesPhone number or group JID

Response

FieldTypeDescription
successbooleanWhether the operation succeeded

Examples

curl -X POST "https://api.example.com/startTyping" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true
}

On this page