Hello folks, I am triing to connect my botpress to...
# 🌎general
q
Hello folks, I am triing to connect my botpress to my mailbox with make. I have created a webhook in make, connected it to my outlook mails and in botpress I have created with AI this following code who is working cause I have a 200 HTTP response, but in the botpress chat i have nothing in response. Here is the code : const url = "https://hook.eu2.make.com/fhselfjhfhfijf01211445"; axios.get(url) .then(response => { const emails = _.get(response, 'data.emails', []); console.log(emails); }) .catch(error => { console.error(error); });
3 Views