Skip to main content
POST
/
api
/
stopTyping
cURL
curl --request POST \
  --url https://{host}/api/stopTyping \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '{
  "chatId": "5511999999999@c.us",
  "session": "my-session"
}'
{
  "success": true
}

Description

This endpoint allows stopping the “typing…” indicator in a contact or group, removing the indication that you are writing a message. Useful when combined with startTyping to simulate more natural behavior.

Body

{
  "sessionId": "my-session",
  "jid": "5511999999999@s.whatsapp.net"
}

Body Parameters

PropertyTypeRequiredDescription
sessionIdstring✅ YesAuthenticated session ID that will remove the indicator
jidstring✅ YesChat identifier (WhatsApp JID). Format: 5511999999999@s.whatsapp.net for contacts or 120363XXXXX@g.us for groups
{
  "success": true
}

Status Codes

  • 200 - Typing indicator removed successfully
  • 400 - Invalid parameters
  • 401 - Unauthorized session
  • 404 - Session not found

Usage Example

curl -X POST https://api.wappfy.com.br/api/stopTyping \
  -H "Content-Type: application/json" \
  -d '{
    "sessionId": "my-session",
    "jid": "5511999999999@s.whatsapp.net"
  }'

Authorizations

apikey
string
header
required

Your Wappfy API key (get it at dash.wappfy.com.br)

Body

application/json
chatId
string
required

Chat ID (WhatsApp JID)

Example:

"5511999999999@c.us"

session
string
required

Session name (instanceName)

Example:

"my-session"

I