Recon
List Recon Runs
Query parameters
start_datestring · dateRequired
Start of date range to search for recon runs
end_datestring · dateRequired
End of date range to search for recon runs
reference_sourceany ofOptional
The ID of the reference source asset
integerOptional
nullOptional
comparison_sourceany ofOptional
The ID of the comparison source asset
integerOptional
nullOptional
configuration_idany ofOptional
The ID of the recon configuration, will ignore reference and comparison query parameters if set
integerOptional
nullOptional
pageintegerOptionalDefault:
1
limitintegerOptionalDefault:
10
Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
GET /api/v1/data/recon/runs?start_date=2025-08-07&end_date=2025-08-07 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": "2025-08-07T00:06:33.851Z",
"completed_at": "2025-08-07T00:06:33.851Z",
"result": {
"reference_row_count": 1,
"comparison_row_count": 1,
"mismatch_row_count": 1,
"type": "text"
}
}
]
}
Last updated