Daily Batch Processing and Incremental Updates
We are using this URL to get the data from Lithium server using REST APIs.
String url = "http://XXXX.xx.com/restapi/vc/boards/id/"+categoryType+"/search/messages?
q=date%3A%5B1402951097%20TO%201405543103%5D
&collapse_discussion=false
&sort_by=-date
&page_size=1000
&page=1
&restapi.response_format=json
&restapi.format_detail=full_list_element
&restapi.response_style=view";
Whenever we change the date , we get different output.
Questions :
1. Based on our new approach, we decided to hit the REST API as a dialy batch job to reterive the result and process the output everyday. How do we do it. what would be the API URL.
2. We are limiting the certain amount of records per call everytime we hit the Lithium Server.
Is there a way to get incremental updates ( everytime, I pass the request, can I able to get the data from where I left last time)
Thanks,
Hemanth