Just need a 2nd set of eyes on this to make sure I’m not missing something, because I must be. I’d like to get the conversation from the database using the conversations API ( Retrieve a conversation tracker ]
I’m using Rasa 2.8.0 with a Postgres database configured as the Tracker database.
I look in the database in the events table and do not see a conversation_id
so I pulled out a sender_id
of 8dd19e9af0b441e3975922b2717772a1
. Then use it in a GET call (using Postman at the moment)
http://localhost:5005/conversations/8dd19e9af0b441e3975922b2717772a1/story?token=myapikey
and getting
{
"version": "2.8.1",
"status": "failure",
"message": "Conversation ID not found.",
"reason": "Not found",
"details": {},
"help": null,
"code": 404
}
Clearly this isn’t correct. Where does the conversation_id
come from ?
FYI - just straight up hitting this - http://localhost:5005/conversations/8dd19e9af0b441e3975922b2717772a1?token=myapikey
returns a genuine 404 error message, not a json message.