GET the list of conversations

Hi,

I´m having trouble with fetching the conversations from Rasa X i have deployed in a server. I´m trying to use your RASA X HTTP API and i can for example GET the list of rasa models, but on GET the list of conversations, i´m having trouble… because it says api token is invalid probably is not setting the query parameters correctly, i don´t know, but i would like to know if you can help me with this?

Rasa X HTTP API uses bearerAuth

Rasa HTTP API works using TokenAuth and JWT.

To get the bearer token you need to call /auth https://YOURSITE.com/api/auth

Body:

{
  "username": "me",
  "password": "YOURRASAXPASSW"
}

This gives you the bearer token and you can use it to get a list of conversations.

More about setting the bearer token here.

1 Like