I have an HTTP caller using a GET Request, to access an API site using a Web Connection for authentication. I am trying to find a way for it to return (either within the JSON response body or otherwise) the access token which is generated when the process runs
I have Accept and Content Type as my headers.
I have tried:
- Storing the cookies
- doing grant_type = client_credentials in the Query String Parameters.
- Creating a list for the Headers (no token content within that)
In the setting for my web connection, I have this:

But I am not returning anything called ‘access_token’ in the response body. To be clear, my process works as intended, but due to new constraints we need to store the access token that is generated every time to store it to use downstream



