Is there a way to modify the $response variable that you get when you do an HTTP Get request? I want to add to the received text that will then be processed later in my piston. But it appears that $response is not a variable that I can change. Other options?
Or alternately, how can I define a variable that I manipulate like I do with a $response? For example,
{trim({replace({replace({$response.name[ctr].text},"]","")},"[","")})}
to
{trim({replace({replace({myVariable.name[ctr].text},"]","")},"[","")})}