There is lots of confusion with the rasa x api. I am going thru the Rasa X Api using Postman one by one.
{{baseUrl}}/api/auth endpoint has payload
username and password. It yields an access_token. What is this access_token used for?
{{baseUrl}}api/auth/jwt has payload
{
“chat_token”: “string”
}
It seems here that chat_token is a hash that is gotten from the generated link used to Share our bot. I would never have guessed that.
The response here is another access_token and conversation_id. What is this access_token used for?
{{baseUrl}}api/chatToken has payload
{
“bot_name”: “string”,
“description”: “string”,
“expires”: 0,
“chat_token”: “string”
}
What is the chat_token this time?