Skip to main content
Datagrid tables provide a cursor-based pagination system that enables efficient incremental replication of records. This is useful when you want to sync table data to an external system while only fetching new or updated records since your last replication.

How It Works

The tables.records.list endpoint returns a cursor with each response. By storing this cursor and passing it as the next parameter in subsequent requests, you can fetch only the records that have changed since your last replication.

Incremental Replication

The following example demonstrates how to implement incremental replication:

Cursor Persistence

Always store the cursor after successfully processing each batch of records. This ensures that if your replication process fails mid-way, you can resume from the last successfully processed batch.