Export a RAW table with cursor-based pagination
Returns a paginated page of rows from the specified RAW table. Use cursor (from next_cursor in the previous response) to fetch the next page. Maximum page size is controlled by MAX_RAW_PAGE_SIZE (default: 10000). When next_cursor is null, all rows have been exported. Tables without a primary key do not support cursor-based pagination. The response header X-Snapshot-At contains the ISO-8601 timestamp of the last successful sync for this table (omitted if no sync has occurred yet). All rows within a single cursor sequence are consistent as of that snapshot.
Authorizations
Path Parameters
Name of the RAW table to export
Query Parameters
Rows per page. Maximum: 10000.
1 <= x <= 10000Pagination cursor from next_cursor of the previous response. Omit for the first page. When the response contains next_cursor: null, all rows have been exported.