GET /v1/dataQuality/testCases/{id}/testCaseResult
Test Case Results
Get and add test case execution results
GET
GET /v1/dataQuality/testCases/{id}/testCaseResult
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Test Case Results
Retrieve test case execution results or add new results programmatically. Each result includes a status, timestamp, and detailed result values.Get Test Case Results
UUID of the test case.
Start timestamp (epoch milliseconds) to filter results.
End timestamp (epoch milliseconds) to filter results.
Add a Test Case Result
UsePUT /v1/dataQuality/testCases/{id}/testCaseResult to add a new test result.
UUID of the test case.
Body Parameters
Epoch timestamp (milliseconds) of the test execution.
Status of the test execution:
Success, Failed, or Aborted.Human-readable summary of the test result.
Array of detailed result values produced by the test.
GET /v1/dataQuality/testCases/{id}/testCaseResult
Returns
Get results returns a paginated list of test case result objects, ordered by timestamp (newest first). Add result returns the test case result object that was created.Response
Array of test case result objects.
Pagination information.
Test Case Status Values
| Status | Description |
|---|---|
Success | The test passed — all assertions were met |
Failed | The test failed — one or more assertions were not met |
Aborted | The test was aborted due to an error or timeout |
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view or add test results |
404 | NOT_FOUND | Test case with given ID does not exist |