Hello, I am very new to some of this so please bear with me.
I am running a GET against one of our internal APIs and want to display the values ONLY in a Text box.
Query Object name: "query_api"
Example RESPONSE:
[
"testgroup1",
"testgroup2",
"testgroup3"
]
When I put {{query_api.data}} on my Text box Value field it does not work unless I surround it with () and when I do that it shows as a comma separated list like this:
(testgroup1,testgroup2,testgroup3)
All I want to do is have a list like this with no indexes or anything displayed on the Text box:
testgroup1
testgroup2
testgroup3
Any suggestions or advice is greatly appreciated. If there are better or easier ways to do this please let me know. Thanks!!!