Docs
Fonte: docs/recipes/webhook-test.md
Voltar ao showcase

Webhook Testing

Use this to validate your webhook endpoints during setup.

WhatsApp Sample Payload

Replace your-host.com with your public URL:

curl -X POST "https://your-host.com/webhooks/messaging/whatsapp" \
  -H "Content-Type: application/json" \
  -d '{
    "entry": [
      {
        "changes": [
          {
            "value": {
              "messages": [
                {
                  "from": "5511999999999",
                  "id": "wamid.HBgM...",
                  "type": "text",
                  "text": { "body": "App crashes when opening report" }
                }
              ]
            }
          }
        ]
      }
    ]
  }'

Related Docs