Reputation: 1715
I've a system that keep tracks all files in box account. I want to know how we can keep track of changes or incremental updates in box account without using long polling. I've worked with dropbox and there's a nice feature to delta poll using a cursor with which we can get the incremental updates only. Is there any similar feature in Box to do this ?
Upvotes: 1
Views: 450
Reputation: 1214
Yes. Box API's Events endpoint lets you request these incremental changes. The documentation refers to the cursor as the stream position.
Upvotes: 2