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

id
string
required
UUID of the test case.
startTs
integer
Start timestamp (epoch milliseconds) to filter results.
endTs
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.
id
string
required
UUID of the test case.

Body Parameters

timestamp
integer
required
Epoch timestamp (milliseconds) of the test execution.
testCaseStatus
string
required
Status of the test execution: Success, Failed, or Aborted.
result
string
Human-readable summary of the test result.
testResultValue
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

data
array
Array of test case result objects.
paging
object
Pagination information.

Test Case Status Values


Error Handling