Skip to main content

List Run Results

GET 

/api/v1/runs/:runID/results

Get a collection of the results of a deploy or refresh run

Request

Path Parameters

    runID integerrequired

    The run ID.

Responses

A collection of results for a deploy or refresh run.

Schema

    data

    object[]

    required

    A collection of run results.

  • Array [

  • isRunning booleanrequired

    If the queried run is still running.

    name stringrequired
    nodeID stringrequired
    runState string
    origin RunOrigins

    Possible values: [API, CLI, UI, fivetranAPI]

    queryResults

    object[]

    required

    The query result returns the status of different stages such as Delete Table or Rename Table. See the queryResults name for the stage.

  • Array [

  • endTime date-time

    error

    object

    errorString stringrequired

    The error message.

    errorDetail string

    Additional detail about the error.

    isRunning booleanrequired

    If the queried run is still running.

    name stringrequired

    The name of the Stage the query ran on.

    queryID string
    rowsDeleted integer
    rowsInserted integer
    rowsUpdated integer
    sql stringrequired

    The SQL query run during the stage.

    startTime date-time
    status stringrequired

    The query status.

    success booleanrequired

    If the query results were run successfully.

    warehouse string

    Name of the warehouse.

  • ]

  • renderQueryResult

    object

    endTime date-time

    error

    object

    errorString stringrequired

    The error message.

    errorDetail string

    Additional detail about the error.

    isRunning booleanrequired

    If the queried run is still running.

    name stringrequired

    The name of the Stage the query ran on.

    queryID string
    rowsDeleted integer
    rowsInserted integer
    rowsUpdated integer
    sql stringrequired

    The SQL query run during the stage.

    startTime date-time
    status stringrequired

    The query status.

    success booleanrequired

    If the query results were run successfully.

    warehouse string

    Name of the warehouse.

  • ]

Loading...