PUT
Send Typing / Recording
Send typing or voice-note recording indicator in a specific chat.
API endpoint
https://waclient.com/api/send_chat_presenceExample:
curl -X PUT \
'https://waclient.com/api/send_chat_presence' \
-H 'Content-Type: application/json' \
--data '{
"presence": "composing",
"chat_id": "[email protected]",
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"chat_id": "[email protected]",
"presence": "composing"
}
}| Parameter | Description |
|---|---|
| chat_id / number | Target chat JID or phone number |
| presence | composing, recording, or paused |
| instance_id | Your instance ID |
| access_token | Your access token |