WasenderApi - Low Cost WhatsApp API for Developers Webhook: Message Receipt Update - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Webhook: Message Receipt Update

Webhooks

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
}