Recon
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:
1limitintegerOptionalDefault:
10Responses
200
Successful Response
application/json
422
Validation Error
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