Rest calls with tokens

0
How to pass a secret token for a particular user-generated from one rest call to a separate rest call for the logged-in user to continue the other flows of the app.   For example, I call a getloginparam method and I get access token in the response. Now when I call /loginwithuserprofile/{{myIdAccessToken}} I want to pass the previously generated access token to this method in order to get the response. I would like some suggestions on the flow. Alo these access tokens have an expiry of 2 minutes. So Do I make the first API entities as persistable?    
asked
1 answers
2

Hi Ankita,

You can pass the access token as a string parameter to the other microflow in which your second rest call is present.

answered