,Hello guys I want to let you know that webhooks a...
# 💻developers
d
,Hello guys I want to let you know that webhooks are working now with bot press you can check more about it here: https://github.com/botpress/botpress/issues/12787 Also include the file and how it was tested. Post body in postman
Copy code
{
  "type": "text",
  "text": "Thanks for your payment!",
  "conversationId": "your-conversation-id",
  "userId": "your-user-id"
}
Code to get ids
Copy code
try {
  const data = event.payload.body;
  console.log("income data from webhook", data);
  event.conversationId = data.conversationId;
  event.userId = data.userId;
  workflow.income_text = data.text
} catch (error) {
  console.log('error')
}
Do not forget to activate webhook integration.