Sachin
Sachin

Reputation: 1715

How to keep track changes in Box api without long polling

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

Answers (1)

Murtza Manzur
Murtza Manzur

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

Related Questions