Thank you for visiting my site!

Home / Power Automate - Flows / Using the REST API

Using the REST API

1. make an api call
2. run a test, copy the OUTPUTS TO a file.
copy the results from  {“results”: [..use one object ..]} to use it in Parse JSON Generate from sample
3. Parsing the HTTP call response
add a new Step Parse JSON
Paste in the copied results
4. For Testing Add a Compose and add the JSON values to it.
body(‘Parse_JSON’)?[‘d’]?[‘results’]
5. Initialize three variables
6. Add the JSON values to the Array variable
use body(‘Parse_JSON’)?[‘d’]?[‘results’]
7. Loop the Array get the values from it and place them into a string variable.
concat(variables(‘varArray’)[variables(‘i’)][‘FirstName’],’;’)
Test it: add a compose to see the results:

ADD YOUR COMMENT