Botpress Webhooks
# 🤝help
f
I'm trying to send data from zapier to botpress using POST in Webhooks by zapier. It keeps showing no data found. What am I doing wrong?

https://cdn.discordapp.com/attachments/1141311482940895313/1141311483591020594/Screenshot_40.png

https://cdn.discordapp.com/attachments/1141311482940895313/1141311484538912788/Screenshot_41.png

https://cdn.discordapp.com/attachments/1141311482940895313/1141311485348425748/Screenshot_43.png

@acceptable-kangaroo-64719 please help
a
hey @future-lifeguard-12317, I've never used zapier before so I have no idea about the specifics. However, here are some general debugging tips you can try: 1. Make an "After Incoming Message" hook and add the ling
console.log(event)
. This way, you'll be able to see all incoming data in the logs 2. Make your bot say the exact data that is expected. So if you're passing something in event.payload, make your bot say
JSON.stringify(event.payload)
3. Verify your webhook with an external tool like postman to make sure that it is sending the expected data
5 Views