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

Delete a Test Suite

Delete a test suite by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.

Delete by ID

id
string
required
UUID of the test suite to delete.
recursive
boolean
default:"false"
Recursively delete child entities (test cases within the suite).
hardDelete
boolean
default:"false"
Permanently delete the test suite. If false, the test suite is soft-deleted and can be restored.

Delete by Name

Use DELETE /v1/dataQuality/testSuites/name/{fqn} to delete by fully qualified name.
fqn
string
required
Fully qualified name of the test suite.
recursive
boolean
default:"false"
Recursively delete child entities.
hardDelete
boolean
default:"false"
Permanently delete the test suite.

Restore a Soft-Deleted Test Suite

Use PUT /v1/dataQuality/testSuites/restore to restore a soft-deleted test suite.
id
string
required
UUID of the soft-deleted test suite to restore.
DELETE /v1/dataQuality/testSuites/{id}

Returns

Soft delete returns the test suite object with deleted: true. Hard delete returns no content (204). Restore returns the restored test suite object.

Error Handling