all tools/WhatsApp Toolkit/WhatsApp Webhook Signature & Payload Tester
WAWhatsApp Toolkitnew suite

WhatsApp Webhook Signature & Payload Tester

Generate sample incoming WhatsApp webhook events and test SHA256 HMAC signature verification.

tool id:whatsapp-webhook
Message Parametersv20.0 graph api
json payload
{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "919876543210",
  "type": "text",
  "text": {
    "preview_url": false,
    "body": "Hello from devstation! Your verification code is 492019."
  }
}
curl command
curl -X POST "https://graph.facebook.com/v20.0/109283746501928/messages" \
  -H "Authorization: Bearer swift_wa_live_sriram_token" \
  -H "Content-Type: application/json" \
  -d '{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "919876543210",
  "type": "text",
  "text": {
    "preview_url": false,
    "body": "Hello from devstation! Your verification code is 492019."
  }
}'