Share feedback, ideas and get community help

Home
Members
Felipe Vidal
F
Felipe Vidal
Offline, last seen 3 months ago
Joined September 13, 2024
Hello! I'm creating a typebot flow to send WhatsApp list messages and get response in input block, but when I use webhook it doesn't work properly, if I remove webhook from flow, connect last message to input, flow works!

I think after webhook, it's like session is over, in viewer docker log: Chat doesn't start: message didn't match any condition, and if i send start msg, bot start to begin...

Any idea how fix this? i try wait block with pause the flow, not work too...

Image 1 is Whatsapp flow.
Image 2 is Typebot builder.
Image 3 is Typebot results Analytics.

Transformed list payload into text payload:
Plain Text
{
  "object": "whatsapp_business_account",
  "entry": [
    {
      "id": "...",
      "changes": [
        {
          "value": {
            "messaging_product": "whatsapp",
            "metadata": {
              "display_phone_number": "...",
              "phone_number_id": "..."
            },
            "contacts": [
              {
                "profile": {
                  "name": "Felipe Vidal"
                },
                "wa_id": "..."
              }
            ],
            "messages": [
              {
                "from": "...",
                "id": "wamid.HBgMNTU4NTkxMjE2N...U2Rjc4MTE4OAA=",
                "timestamp": "1724173238",
                "type": "text",
                "text": {
                  "body": "botão 1"
                }
              }
            ]
          },
          "field": "messages"
        }
      ]
    }
  ]
}
37 comments
B
F
i