ChatSend Docs
Messages

Stop Typing Indicator

Hide typing from the recipient.

Endpoint

Hide typing from the recipient.

POST /stopTyping

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/stopTyping" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true
}

On this page