Hi, I want to integrate a botpress bot (studio),...
# 💻developers
w
Hi, I want to integrate a botpress bot (studio), to my fronted. I have some questions: 1. I guess if a new user talk to the bot, I should use the create conversation method, right? 2. what must be the name of the integration? 3, what must be the channel? I'm trying to make a POST to "/v1/chat/conversations" , with this data:
Copy code
const data = {
        channel: 'channel',  // Replace with your actual channel
        tags: {},  // Replace with your actual tags,
        integrationName: "webhook"
    };
but got
Copy code
"request/body must have required property 'channel', request/body must have required property 'tags'"
In the workspace I have added the webhook integration, but when I list the integrations I get
Copy code
{ integrations: [], meta: {} }
Looking forward for help, thanks.