Whatsapp API
  • Getting Started
    • Dashboard API Overview
    • Register WhatsApp Business API Number
    • Get Channel ID & Link Your App
    • Get Access Token
    • Create WhatsApp Template
  • Whatsapp API
    • WhatsApp API's Overview
    • Media
      • Upload Media
      • Download Media
    • Send Messages
      • Text Mesage
      • Reaction Message
      • Media Message
      • Contact Message
      • Interactive Message
      • Template Message
      • Reply Message
    • Mark Message as Read
    • Set-up Webhook
      • Received Messages
      • Message Status
    • Error Codes
Powered by GitBook
On this page
  1. Whatsapp API

Mark Message as Read

PreviousReply MessageNextSet-up Webhook

Last updated 2 years ago

Whenever you receive messages from your customers, you can mark the message to read so the customer will see two double check marks on the message which customers sent

Sample sent message request using Curl

curl -X POST --location 'https://wa-api.neuapix.com/whatsapp/v3/{{Channel-ID}}/mark-message' \
--header 'Authorization: Bearer {{place your token here}}' \
--header 'Content-Type: application/json' \
--data '{
    "messaging_product": "whatsapp",
    "status": "read",
    "message_id": "{{Message-ID from your customer}}"
}'

Successful response return status true/false:

{
    "success":true
}