WhatsApp Sender

Tetapan

Konfigurasi webhook dan tetapan sistem

Webhook Configuration
Terima notifikasi real-time untuk event WhatsApp melalui HTTP POST request

Aktifkan webhook untuk terima event notifications

URL endpoint untuk terima POST request dengan event data

Incoming Messages

Terima notifikasi untuk mesej masuk

Message Status

Status delivery mesej (sent, delivered, read)

QR Code

QR code untuk scan WhatsApp

Ready

WhatsApp berjaya disambungkan

Disconnected

WhatsApp terputus sambungan

Webhook Payload Example
Contoh format data yang akan diterima oleh webhook anda
{
  "event": "message",
  "sessionId": "session-1",
  "timestamp": "2026-03-08T10:30:00.000Z",
  "data": {
    "id": "msg_123456",
    "from": "60123456789@c.us",
    "body": "Hello, this is a test message",
    "type": "chat",
    "hasMedia": false
  }
}
Important Notes

• Webhook URL must be publicly accessible (HTTPS recommended)

• Your endpoint should respond with 200 OK status

• Failed webhooks will be retried up to 3 times

• Consider implementing signature verification for security