Skip to main content
POST
/
chat
/
read
Marcar chat como lido/não lido
curl --request POST \
  --url https://api.wppfy.com/chat/read \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "number": "5511999999999@s.whatsapp.net",
  "read": true
}
'
{
  "response": "Chat read status updated successfully"
}

Authorizations

token
string
header
required

Body

application/json
number
string
required

Identificador do chat no formato:

Example:

"5511999999999@s.whatsapp.net"

read
boolean
required
  • true: marca o chat como lido
  • false: marca o chat como não lido

Response

Status de leitura atualizado com sucesso

response
string
Example:

"Chat read status updated successfully"