Mute Chat Notifications

Supported & Tested

Mute notifications for a chat.

POSThttps://api.waplix.io/api/v1/chats/mute
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

duration
numberOpt

Optional mute duration in seconds

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/mute" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "chat_id": "15551234567@s.whatsapp.net",
  "duration": 3600
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "chat_id": "15551234567@s.whatsapp.net",
    "status": "muted",
    "duration": 28800,
    "mute_until": 1782612676
  }
}
Was this page helpful?