Messages

Start Typing Indicator

Show typing to the recipient.

Home/Docs/Start Typing Indicator

Endpoint

Show typing to the recipient.

Request
POST /startTyping

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