Assuming that we have more than 1000 records to export, what are the
options? the above link also mentions paging, could this be used in this
scenario?
You should be able to use paging parameters on the Form API to get more
than 1000 items.
*/form/limit=100 should give you the first hundred items
*/form/limit=100&offset=100 should give you items 100-200
*/form/limit=500&offset=1000 should give you items 1000-1500
etc.
Thanks,
Sheel
···
On Mon, Nov 30, 2015 at 8:47 AM, Alexandre Vanobberghen < alexandre.vanobberghen@gmail.com> wrote:
Assuming that we have more than 1000 records to export, what are the
options? the above link also mentions paging, could this be used in this
scenario?