It is possible to send messages using client form botpress cloud using code?
I have tried this but does not work:
console.log('create message')
console.log(
client.createMessage({
payload: { type: 'text', text: 'hola!' },
userId: event.userId,
conversationId: event.conversationId,
type: 'text',
tags: event.tags
})
)