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

Retrieve a Test Case

Get a single test case by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the test case to retrieve.
string
Comma-separated list of fields to include: owners, testSuite, testDefinition, testCaseResult.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/dataQuality/testCases/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the test case (e.g., sample_data.ecommerce_db.shopify.dim_address.shop_id.column_value_max_to_be_between).
string
Comma-separated list of fields to include: owners, testSuite, testDefinition, testCaseResult.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/dataQuality/testCases/{id}

Returns

Returns a test case object with all requested fields populated.

Response

string
Unique identifier for the test case (UUID format).
string
Test case name.
string
Fully qualified name of the test case.
Entity link to the target table or column.
object
Reference to the test definition.
object
Reference to the test suite.
array
Parameter values for this test case.
object
Most recent test result. Only included when fields contains testCaseResult.
number
Version number for the entity.
array
List of owners. Only included when fields contains owners.

Error Handling