Forum Discussion
JustinTorrence
5 years agoQrew Cadet
The Quickbase REST API paginates records depending on the size of the query. Check out this link for more. The metadata object should give you information about how many records were returned (so you know how many to skip for the next call).
Example:
{
"metadata": {
"totalRecords": 10,
"numRecords": 1,
"numFields": 3,
"skip": 0,
"top": 10
}
}
If you don't want to deal with this, I would suggest using the Quickbase channel for querying records if at all possible.
------------------------------
Justin Torrence
Quickbase Expert, Jaybird Technologies
jtorrence@jaybirdtechnologies.com
https://www.jaybirdtechnologies.com/#community-post
------------------------------
AndrewHansen1
5 years agoQrew Member
Thanks Justin! Unfortunately the Pipeline options in the Quickbase channel are too slow to be tenable for our application, so API it is!
I will look over the documentation that you provided, and see if I can get a working solution.
Regards,
Andrew
------------------------------
Andrew Hansen
------------------------------
I will look over the documentation that you provided, and see if I can get a working solution.
Regards,
Andrew
------------------------------
Andrew Hansen
------------------------------