For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recon

Data Recon is on limited access preview only.

Get Recon Runs

get

List Recon Runs

Query parameters
start_tsstring · date-timeRequired

Start of datetime range to search for recon runs

end_tsstring · date-timeRequired

End of datetime range to search for recon runs

reference_sourceinteger · nullableOptional

The ID of the reference source asset

comparison_sourceinteger · nullableOptional

The ID of the comparison source asset

configuration_idinteger · nullableOptional

The ID of the recon configuration, will ignore reference and comparison query parameters if set

pageintegerOptionalDefault: 1
limitintegerOptionalDefault: 10
Responses
200

Successful Response

application/json
get/recon/runs
GET /api/v1/data/recon/runs?start_ts=2026-01-01T00%3A00%3A00.000Z&end_ts=2026-01-01T00%3A00%3A00.000Z HTTP/1.1
Host: connect.<REGION>.decube.io
Accept: */*
{
  "data": [
    {
      "run_id": 1,
      "configuration_id": 1,
      "configuration_name": "text",
      "reference_table": {
        "id": 1,
        "name": "text",
        "type": "source"
      },
      "comparison_table": {
        "id": 1,
        "name": "text",
        "type": "source"
      },
      "status": "passed",
      "started_at": "2026-01-01T00:00:00.000Z",
      "completed_at": "2026-01-01T00:00:00.000Z",
      "result": {
        "reference_row_count": 1,
        "comparison_row_count": 1,
        "mismatch_row_count": 1,
        "type": "text"
      }
    }
  ]
}

Last updated