Subscribe to Presence

Supported & Tested

Subscribe to presence updates for a chat contact.

POSThttps://api.waplix.io/api/v1/chats/presence-subscribe
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

chat_id
stringReq

Required phone number, @s.whatsapp.net, @g.us, or @lid chat id

Usage Notes
Verified on production. Public documentation uses sanitized example data only.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/chats/presence-subscribe" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "chat_id": "15551234567@s.whatsapp.net"
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "chat_id": "15551234567@s.whatsapp.net",
    "status": "subscribed",
    "presence": null,
    "last_seen": null,
    "presence_updated_at": null,
    "presence_debug": {
      "subscribed_jid": "15551234567@s.whatsapp.net",
      "tc_token_cached": false,
      "tc_token_fetched": false,
      "tc_token_supported": false,
      "subscribe_error": null,
      "cache_presence": null,
      "full_subscribe": true
    }
  }
}
Was this page helpful?