API Get Request URL with variable

Hey!
I need a little help. How can I change the :{{folderID}} in the url to the variable which comes from the Table Row to Variable node?

Hi @domiterd ,

Add a String Manipulation (Variable) node in between

image

Assuming your folderId is an Integer flow variable, you could set the String Manipulation (Variable) node to generate a dynamic url string as follows:

replace("https://graph.micrsoft.com/v1.0/me/drive/items/:{{folderID}}/children",
":{{folderID}}",
string($${ImyfolderId}$$))

and then in the GET Request node, configure the flow variable tab like this, selecting the String flow variable created by the String Manipulation (Variable) node

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.