I am trying to access my Tableau Server via the API which works great. I have the AI Agent setup with Open AI Model and Window Buffer Memory. I then have two HTTP Requests coming off the tool part of the Agent. The one is Tableau Auth. It has my personal access token from Tableau and when I run that by itself, it works as expected. The second tool is Find Workbook1. This SHOULD us the credentials/token from the Tableau Auth tool to gain access and then pull the expected data back - in this case a list of the workbooks. The problem is that I can’t seem to make Find Workbook1 see the credentials and token from Tableau Auth. I get an authentication error when it hits Find Workbook1. I have tried using expressions like - {{ $json[“response”][“credentials”][“token”] }}. I tried {{ $json[“Tableau Auth”][“response”][“credentials”][“token”] }}. I tried “{{ $(‘Tableau Auth’).item.json.credentials.token }}”.
It seems like the Find Workbook1 node is not looking at Tableau Auth for the credentials/token. I am not sure how to make it either.
I feel like I am missing something obvious. Any help is appreciated.