Forum Discussion
CraigSchulz
7 years agoHelper II
API calls with Pagination
Using the code below I am able to access data via an API and pull the first 100 records. My problem and my question is, how can I get this code to iterate through a series of offsets so that I can pu...
- 7 years ago
Hi CraigSchulz,
It's more related to the rest api you use. I recommend you to read more documentation about the api about how to query more rows of records like https://api.recruiterbox.com/v2/candidates?limit=2000&offset=0.
Regards,
Jimmy Tao
v-yuta-msft
7 years agoCommunity Support
Hi CraigSchulz,
It's more related to the rest api you use. I recommend you to read more documentation about the api about how to query more rows of records like https://api.recruiterbox.com/v2/candidates?limit=2000&offset=0.
Regards,
Jimmy Tao
CraigSchulz
7 years agoHelper II
Okay, thanks for the input.