Messages
Start Typing Indicator
Show typing to the recipient.
Endpoint
Show typing to the recipient.
Request
POST /startTypingAuthentication
Every request must include a Bearer token in the Authorization header. Missing or invalid API keys return 401 Unauthorized.
Header
Authorization: Bearer YOUR_API_KEYRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
| session | string | Yes | Session ID |
| to | string | Yes | Phone number or group JID |
Response
| Field | Type | Description |
|---|---|---|
| success | boolean | Whether the operation succeeded |
Examples
cURL
curl -X POST "https://api.example.com/startTyping" \
-H "Authorization: Bearer YOUR_API_KEY"Response
{
"success": true
}