Messages statuses
Receive double check
The "receive double check" on messages sent by the customer appears when the callback with the received status reaches 360Dialog Webhook and then notifies the WABA. This setting needs to be set up previously for this to work.
The "receive double check" on messages sent by the business appears when the customer’s WhatsApp app receives the message.
Read double check
The read double check on messages sent by the customer appears when the message is marked as read by the business.
The read double check on messages sent by the business appears when the customer’s WhatsApp app is open in the message.
 
 
Step 1: Make POST Request to /messages
POST Request to /messagesThe message_id used in this API call is the id provided in the Webhook Inbound Notification.
POST /messages
{
  "messaging_product": "whatsapp",
  "status": "read",
  "message_id": "MESSAGE_ID"
  }'Parameters
messaging_product
Required.
Use whatsapp
message_id
Required.
status
Required.
Updating status to read is applicable only for incoming messages.
Step 2: Check the API Response
A successful response returns:
null # or { "success" : true }Last updated
Was this helpful?