Read only what changed (incremental)
get_updatesFetch only the sessions modified since a given revision, returning new submissions and edits along with the next revision to use. Ideal for pulling incremental updates without re-reading the full history.
Instructions
Incrementally read history. Pass the sinceRevision you last saw, and this returns only sessions changed after it (new submissions or dashboard edits), plus the current revision to pass next time. Call with sinceRevision=0 (or omit) to get everything the first time. Use this instead of re-reading the whole history so you only pull deltas — e.g. to pick up answers the user edited after the fact.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sinceRevision | No | Highest revision you've already processed. Omit or 0 to read all. |