Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
lizzy1
Contributor III
Contributor III

Multiple paginated APIs in one job

I have a job in mind that I'm not sure how to execute. I need to call two separate REST APIs then join their outputs before loading to my database. The problem is that both of these API's only return a few records per page and need a page parameter for subsequent calls. When I have done similar jobs with only one API call, I have used a flow meter to tell when I have reached the last page. Is it possible to have two separate pairs of tFlowMeter and tFlowMeterCatcher in the same job, without interfering with one another? If not, how should I accomplish this?

Labels (3)
1 Solution

Accepted Solutions
root
Creator II
Creator II

Maybe try creating two sub jobs and calling them from one parent job?
OR
use tIterate component after fetching total records and then call the remaining records?

Never worked with tFlowMeter

View solution in original post

2 Replies
root
Creator II
Creator II

Maybe try creating two sub jobs and calling them from one parent job?
OR
use tIterate component after fetching total records and then call the remaining records?

Never worked with tFlowMeter
lizzy1
Contributor III
Contributor III
Author

I used your idea of making separate child jobs, and it worked wonderfully.