I’m trying to retrieve all the records in a table with curl over HTTPS.
I checked the table I’m targeting, and it has 283 records. I imagine I’ll need to issue three requests, since each request returns a maximum of 100 records.
I piped the results of my first curl
command into a new file called output.txt
and then tried to find the offset
value from within the curl output file.
However, when I search through this file, I can’t find an offset
value anywhere within the JSON like I expected, based on this line in the documentation:
If there are more records, the response will contain an
offset
.
Is there something obvious that I’m missing… I feel like there has to be. If anyone knows how I can get this offset
value so that I can use it to request the next page of records (and the one after that), I’d be super grateful.