Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
kleinmat
Contributor III
Contributor III

Call tRESTClient iteratively

Hi,
I have a simple CSV-file with just 1 column and 5 rows and I would like to call a tRESTClient for each row (using the content of the row as query parameter)
So I built this:
tFileInputDelimited --main--> tFlowToIterate --iterate--> tIterateToFlow --main--> tLogRow
The log listed all 5 records of the file. Beautiful.
Then I built
tFileInputDelimited --main--> tFlowToIterate --iterate--> tIterateToFlow --main--> tRESTClient
And it also performed the REST call 5 times. But it only ever used the LAST row value (so it called the same query 5 times).
How can I make sure it actually iterates?
THanks
Matt
Labels (3)
1 Reply
kleinmat
Contributor III
Contributor III
Author

Oh, I think I accidentally found the solution:
tFileInputDelimited --main(row1)--> tRESTClient
and then calling row1.<columnname> in the rest client
For some reason that worked...
Matt