Event triggered specifically for message receipt status changes.
Webhook Event: message-receipt.update
This event is triggered specifically for message receipt status updates within group chats, such as sent, delivered, or read by individual group members. The payload includes the updated receipt status and the message key identifying the message.
See the code example below for a typical payload structure.
Code Examples
{
"event": "message-receipt.update",
"sessionId": "your_session_id_here",
"data": {
"message": {
"key": {
"remoteJid": "group_jid_here@g.us",
"id": "message_id_here",
"fromMe": true,
"participant": "participant_jid_here"
},
"receipt": {
"userJid": "participant_jid_here",
"receiptTimestamp": 1234567890
}
}
},
"timestamp": 1234567890123
}