There are 2 different ways of handling this:
1. You can write your own custom JavaScript scripts to do that.
or
2. You can use a no-code automation tool that doesn’t require any knowledge of programming code at all.
Personally, I don’t know JavaScript, so I go with #2 myself.
I use and I highly recommend Make’s Airtable automations and integrations.
You would just need to use Make’s Airtable - Search Records module to search your Airtable records, and Make will automatically handle all the offsets for you.
Make will also let you specify the maximum number of records you want to retrieve and the sort order of the records.
Make will also automatically loop through all the records for you, so you can handle each one separately when sending them to your CRM.
If your CRM isn’t natively supported by Make, you can just use Make’s HTTP module to send your own custom API calls to your CRM.
If you’ve never used Make before, I’ve assembled a bunch of Make training resources in this thread: https://air.tableforums.com/t/make-com-basic-navigation-tips/277
I also give live demonstrations of how to use Make in many of my Airtable podcast appearances here: https://www.youtube.com/playlist?list=PLqssva4liHRwHhQIpTXekG8WObEoyC2F1
For example, in this video, I show how to work with Airtable arrays in Make.
https://www.youtube.com/watch?list=PLqssva4liHRwHhQIpTXekG8WObEoyC2F1&v=sKPyG0HZCYY
p.s. If you have a budget for your project and you’d like to hire an expert Airtable consultant to help you with any of this, please feel free to contact me through my website: Airtable consulting — ScottWorld
MaxRecords sets the total number of records you will get. If you want fewer records per call, set the page size.
As kuovonne said, try pageSize, so your URL would just be:
https://api.airtable.com/v0/appycQyQBCRaFT2aD/Tebi-Category-Test?pageSize=10&view=Grid%20view
MaxRecords sets the total number of records you will get. If you want fewer records per call, set the page size.
Thank you it worked.
As kuovonne said, try pageSize, so your URL would just be:
https://api.airtable.com/v0/appycQyQBCRaFT2aD/Tebi-Category-Test?pageSize=10&view=Grid%20view
Thank you so much for this.