Here is the code:
if (workflow.question !== turn.KnowledgeAgent.responded)
workflow.makeSuccess = false;
const messageData = {
message: workflow.question
};
try {
const response = await axios.post('https://hook.eu2.make.com/v27gtt4rgn7med3sfa9qriavx1fpjo17', messageData);
console.log(response.data);
workflow.makeSuccess = true;
} catch (error) {
console.error(error);
}