Retrieve all video detection runs associated with a specific file. Each detection run corresponds to one processing job executed against that file (for example, a video redaction pass that looked for faces or license plates). This endpoint returns the raw detection run records exactly as stored, including the per-run detections array (which may be empty [] until a worker populates results) and the creation timestamp. Use this endpoint to: (1) list historical detection/redaction attempts for a file; (2) render overlays from the saved detections array; (3) debug or audit processing for a single file.
Notes:
id, tenant_id, file_id, case_id, doc_id, detections, created_at.case_id can be null when a detection run is not linked to a case.detections is a JSON array (serialized), typically an array of objects describing entities per time/frame. Its shape is application-defined and may evolve without breaking this contract.The unique File ID whose detection runs you want to list.
Successfully retrieved all detection runs tied to the specified file. The response includes the raw detection run records as stored in the system.
Array of detection run records for the provided file.