Hi everyone! I'm currently trying to send the contents of my chatbot conversation to a Python notebook in order to process the captured variables there. I'm doing this using the Botpress API and the Python requests library, and I managed to get a successful 200 API response. However, my requests.get() returns an empty 'conversations' list even after my chatbot conversation is completed.
url = 'https://api.botpress.cloud/v1/chat/conversations/'
generated_token = 'Bearer MYTOKEN'
Headers = {'Authorization' : generated_token, 'x-bot-id' : 'MYBOTID'}
response = requests.get(url, headers = Headers)
print(response)
print(response.json())
Does anyone know what is wrong here?