I access the form data using Rest API via this link:
localhost/wp-json/gf/v2/entries?form_ids=16
I am able to get only 10 latest records. How do I set it to get to the number of records I want (let’s say 1000, or its full records of form submission?)
Thank you very much
Nevermind, I’ve got it using paging.
//retrieve 20 results per page
https:
//localhost/wp-json/gf/v2/entries?paging[page_size]=20
//retrieve 20 results per page starting with the 16th row (offset starts at 0)
https:
//localhost/wp-json/gf/v2/entries?paging[page_size]=20&paging[offset]=15
//retrieve 5 results per page, starting with the second page
https:
//localhost/wp-json/gf/v2/entries?paging[page_size]=5&paging[current_page]=2
Thank you