Skip to main content
POST
/
chat
/
mute
Silenciar chat
curl --request POST \
  --url https://api.wppfy.com/chat/mute \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "number": "5511999999999@s.whatsapp.net",
  "muteEndTime": 8
}
'
{
  "response": "Chat mute settings updated successfully"
}

Authorizations

token
string
header
required

Body

application/json
number
string
required
Example:

"5511999999999@s.whatsapp.net"

muteEndTime
enum<integer>
required

Duração do silenciamento:

  • 0 = Remove silenciamento
  • 8 = Silencia por 8 horas
  • 168 = Silencia por 1 semana
  • -1 = Silencia permanentemente
Available options:
0,
8,
168,
-1
Example:

8

Response

Chat silenciado com sucesso

response
string
Example:

"Chat mute settings updated successfully"