Messages

Stop Typing Indicator

Hide typing from the recipient.

Home/Docs/Stop Typing Indicator

Endpoint

Hide typing from the recipient.

Request
POST /stopTyping

Authentication

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

Header
Authorization: Bearer YOUR_API_KEY

Request Body

FieldTypeRequiredDescription
sessionstringYesSession ID
tostringYesPhone number or group JID

Response

FieldTypeDescription
successbooleanWhether the operation succeeded

Examples

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