Am using Rest API, in which I had results with pages and size. data coming on incremental basis. We need to pass the pages and size of records on the request to get the response. data has to be copied using Copy data.
Sample URL
https://TestApp.com/api/v1/devices?page=0&size=200
in this each page, we can get 200 records. so I have to iterate the request as follows.
https://TestApp.com/api/v1/devices?page=1&size=200
https://TestApp.com/api/v1/devices?page=2&size=200
..
..
https://TestApp.com/api/v1/devices?page=N&size=200
Please help.