Hi We have a requirement where, If we do an api call , we get response something like below
{
records_remaining : “200”,
records_processed: “100”,
failed: “0”
},
“entity”: [
"rec1: “abc”,
“rec2”:“xyz”
]
Pagination does not support by Api . we need to wait for 10 sec for every api call until we get records_remaining is 0
for example https:abc.com/8080/getfullload?batch=50 -----> wait for 10 sec and do the same call until we get records remainining to 0
@bojanvelevski Any best way we can achieve this? please help!