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

Retrieve a Test Suite

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

Get by ID

id
string
required
UUID of the test suite to retrieve.
fields
string
Comma-separated list of fields to include: owners, tests.
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/dataQuality/testSuites/name/{fqn} to retrieve by fully qualified name.
fqn
string
required
Fully qualified name of the test suite.
fields
string
Comma-separated list of fields to include: owners, tests.
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/dataQuality/testSuites/{id}

Returns

Returns a test suite object with all requested fields populated.

Response

id
string
Unique identifier for the test suite (UUID format).
name
string
Test suite name.
fullyQualifiedName
string
Fully qualified name of the test suite.
displayName
string
Human-readable display name.
description
string
Description of the test suite.
executable
boolean
Whether this is an executable or logical test suite.
version
number
Version number for the entity.
owners
array
List of owners. Only included when fields contains owners.
tests
array
List of test case references. Only included when fields contains tests.

Error Handling