Observability Guide
Sync History
Your customer will be interested in knowing the history of their sync runs. All of the information within the UI is available within the API.
Our product docs cover the UI features.
Each of the pieces of information in the image above is retrievable via API. To fetch the sync runs for a given sync configuration, query the List Sync Runs endpoint. The pagination parameters can be used to iterate through.
The response for a given sync run will look like
- Start Time -
created_at
- Duration -
completed_at - created_at
- Run ID -
id
- Sync Trigger Reason - coming soon
- Source Record Count -
source_record_count
- Invalid Source Records -
source_record_invalids
- Changed Source Records - the UI displays the sum of
source_record_updates
andsource_record_deletes
- Records Processed by Destination -
records_processed
- Successfully Synced Records -
records_updated
- Rejected Records -
records_failed
- Status -
status
Error information is captured in 3 fields—
- Error Code -
error_code
- Error Message -
error_message
- Error Detail -
error_detail
Was this page helpful?