- Was my particular record synced over?
- If that record was not synced over, what’s the reason?
- Can you provide me a file with all the records that were synced over?

Fetch Records API
The Fetch Records API allows you to query any sync run by- primary identifier
- status
- operation (upsert or delete in destination)
Fetch Records Count
The Fetch Records Count API allows you to query any sync run by the same parameters as above, and simply return a count of how many records match those conditions.Fetch Records Export
The Fetch Records Export API allows you to query any sync run bystatus
and
operation
, and returns a list of parquet files containing each of the matching records, their statuses, and their error
messages (if any).
This is ideal for large syncs where the number of records to sort through are unmanageable in paginated API responses from the above
Fetch Records API.