Mark Message as Read

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
}

Last updated