Skip to main content
GET
GET /v1/dataQuality/testCases/{id}/testCaseResult

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

string
required
UUID of the test case.
integer
Start timestamp (epoch milliseconds) to filter results.
integer
End timestamp (epoch milliseconds) to filter results.

Add a Test Case Result

Use PUT /v1/dataQuality/testCases/{id}/testCaseResult to add a new test result.
string
required
UUID of the test case.

Body Parameters

integer
required
Epoch timestamp (milliseconds) of the test execution.
string
required
Status of the test execution: Success, Failed, or Aborted.
string
Human-readable summary of the test result.
array
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
Array of test case result objects.
object
Pagination information.

Test Case Status Values


Error Handling