How can i access token of POST API response in GET API

0
Hello everyone,  Here I'm posting POST API in save where I will get token on save of this data. I want to access that response of Token data in my GET API. But, I'm unable to access that token data in get api because it requires parameter to access in GET API how should i do this?     
asked
1 answers
-1

I can see you have not used Import Mapping in your microflow. 

Assuming your token is returned as JSON a typical GET method will involve:

  1. Calling the API
  2. Performing Import Mapping (Which converts the JSON response to objects)

To do this you will need JSON structure, and an Import Mapping (pictured below)

 

The full process is described here 

 

JSON.png

answered