I'm trying to make sure my bot can both send and recieve data from Make.com automations / scenarios and using Webhooks for that. It works perfectly when I'm sending data from the bot, but receiving is a bit tricky for me.
I current have a HTTP POST action set up in Make which sends data along with the application/json header to the Botpress webhook that I enabled in Integrations tab:
URL
https://webhook.botpress.cloud/my_id
Request content
{
"content" : "my content",
"conversationId" : "convo-10",
}
Then in my bot creation UI I have a webhook trigger and trying to just output {{event.payload.body.content}}
This doesn't work. In my console I have the following error:
Error sending outgoing message {
integration: 'webhook',
messageType: 'text',
payload: '{"type":"text","text":"Hook text:","typing":true}',
error: yt [Error]: request/body must have required property 'conversationId' (Error ID: err_1692359485820xA9211F1C)
Is there something I'm missing or some other way to test the integration?