What is a chatToken?

When using /api/auth/jwt endpoint what is chat_token?

{ “chat_token”: “string” }

I generated an access_token from /api/auth but this yields

{

"version": "0.42.0",

"status": "failure",

"message": "Chat token is not valid.",

"reason": "InvalidChatToken",

"details": {},

"help": null,

"code": 401

}

What is chat_token

Token shared with guests that give them permission to authenticate

Ref: Rasa X/Enterprise Documentation

I Hope this will help you.

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?

@yxs8495 if I say in simple language tokens are just password, permission password, access password for read / write (GET/POST), etc.

I am asking for the particular values so that I can use the api.

@yxs8495 which particular value your are asking? from your post you asking what I chat token ?