I'm making a http request to change a users password. I'm trying to set the password to a global variable that has been previously set within the flow.
I've tried multiple methods, listed below with the results, but nothing has worked. I have set my body to formula.
Method 1:
{
password: Global.password
}
Got a 400 for this
Method 2:
{
password: "Global.password"
}
This set the password to the variable name and not the variable value.
Method 3 (Suggested by Copilot AI):
{
password: "{{Global.password}}"
}
Again set the password to everything within the " " and not the actual variable value.