Problem:
I’m trying to trigger intent like this example does:
curl -H "Content-Type: application/json" -X POST -d '{"name": "EXTERNAL_dry_plant", "entities": {"plant": "Orchid"}}' http://localhost:5005/conversations/38cc25d7e23e4dde800353751b7c2d3e/trigger_intent
/trigger_intent does not exist for Rasa X http api.
if I use /execute the action does run but after the uttered message there is this empty response and three dots keep loading.
POST https://MYSITE.com/api/conversations/IDHERE/execute
I got really close what I’m trying to achieve by using this:
https://api/conversations/{conversation_id}/messages
The problem with this is that it makes latest_input_channel here rasa so bot utters to rasa, not to the channel user is using(socketio, facebook, slack…).