latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

ELT Stream Runs

List ELT Stream Runs

List runs for a specific ELT Stream in pages sorted by their start date. Only runs from the last 3 months are available.

get/elt_stream_runs

Query parameters

elt_stream_idstring required
Example:vBjnEbMi9i3P4K

The ID of the ELT Stream to list runs for.

starting_afterstring
Example:ewK8sDoLNI4CFR

The cursor to use in pagination. Use the value of the next_cursor field from the response of a previous list request.

limitinteger

The number of items to return in a single page.

sort_direction'asc' | 'desc'
Example:desc

The direction to sort the results.

Response

has_moreboolean required

Indicates whether there are more items to be fetched in the subsequent pages.

next_cursorstring

The cursor to use in pagination. Use this value as starting_after to get the next page.

Example response

{
  "has_more": true,
  "next_cursor": "VeN1GjhVIq1D9h",
  "data": [
    {
      "id": "c3RyZWFtLXN5bmMtMTIzfDIwMjQtMDMtMjBUMDk6MDA6MDAuMDAwWg",
      "elt_sync_id": "X4ughggABSd3UY",
      "elt_stream_id": "X4ughggABSd3UY",
      "started_at": "2024-03-20T09:00:00.000Z",
      "finished_at": "2024-03-20T09:05:00.000Z",
      "rows_synced": 500
    }
  ]
}