v1

latestOpenAPI 3.1.02026-07-1413113265.9 KB
chat

mark chat messages as seen (blue ticks)

Mark all messages in a chat as seen (read). This will show blue ticks (double check marks) to the sender only if both parties have read receipts enabled in their privacy settings. If read receipts are disabled by either party, the messages will be marked as delivered (gray ticks) instead.

post/instances/{id}/client/action/send-seen

Path parameters

idinteger required

Instance ID

Request body

chatIdstring required

Chat ID <countrycode_short><usernumber>@c.us or @g.us for groups

Example request

{
  "chatId": "50664083362@c.us"
}

Response

Successfully marked chat messages as seen

status'success' | 'error'

Example response

{
  "data": {
    "seenSend": true
  },
  "links": {
    "self": "https://waapi.app/api/v1/instances/1/client/action/send-seen"
  },
  "status": "success"
}