latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

ELT Syncs

Get ELT Sync Status

Get the current status of an ELT sync, including active and latest sync states for each source stream.

get/elt_syncs/{id}/status

Path parameters

idstring required
Example:X4ughggABSd3UY

The ID of the ELT sync.

Response

elt_sync_idstring required

Sync ID

Example response

{
  "elt_sync_id": "X4ughggABSd3UY",
  "source_streams": [
    {
      "name": "users",
      "active_sync": {
        "bytes_synced": 1024,
        "error_message": "Connection timeout",
        "estimated_total_count": 1000,
        "finished_at": "2024-03-20T10:00:00Z",
        "records_synced": 500,
        "started_at": "2024-03-20T09:00:00Z",
        "details": "Processing chunk 1/5"
      },
      "latest_sync": {
        "bytes_synced": 1024,
        "error_message": "Connection timeout",
        "estimated_total_count": 1000,
        "finished_at": "2024-03-20T10:00:00Z",
        "records_synced": 500,
        "started_at": "2024-03-20T09:00:00Z",
        "details": "Processing chunk 1/5"
      }
    }
  ]
}