> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vectalk.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Marcar como Lida

> Marque uma mensagem recebida como lida (exibe os dois checks azuis)

<ParamField body="messaging_product" type="string" required default="whatsapp" />

<ParamField body="status" type="string" required default="read" />

<ParamField body="message_id" type="string" required placeholder="wamid.HBgLNTUx...">
  ID da mensagem recebida via webhook (`messages[0].id`).
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://apis.vectalk.com.br/api/messages \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "messaging_product": "whatsapp",
      "status": "read",
      "message_id": "wamid.HBgLNTUx..."
    }'
  ```
</RequestExample>
