/dataset/{datset_uuid}/modified/records/{timestamp}/{limit}/{offset}
/dataset/{datset_uuid}/modified/records/{timestamp}/{limit}/{offset}
/dataset/{datset_uuid}/modified/records/{timestamp}/{limit}/{offset}
Returns a paginated list of records within a dataset that have been modified since a given Unix timestamp. This endpoint is intended for incremental sync use cases — it does not return full record content, only lightweight identifiers sufficient to detect which records have changed and need to be fetched in full via /record/{record_uuid}.
Requires a Bearer token in the Authorization header. The pre-request script automatically obtains a fresh token using the apiuser and apipass environment variables.
Returns a 200 OK with a JSON object containing a records array. Each item in the array is a lightweight record summary — not the full record content.
Response fields per record:
Example response:
Use limit and offset together to page through large result sets. For example, to retrieve the second page of 20 results, set limit=20 and offset=20.
This endpoint is typically used as the first step in a two-phase sync:
unique_id returned, call /record/{record_uuid} to retrieve the full record content.