Skip to main content
DELETE
/
api
/
data-readiness
/
data-assets
/
tables
/
scores
Clear DQ and/or metadata scores for a table
curl --request DELETE \
  --url https://api.example.com/api/data-readiness/data-assets/tables/scores \
  --header 'Authorization: Bearer <token>'
{
  "table_fqn": "<string>",
  "scope": []
}

Documentation Index

Fetch the complete documentation index at: https://em-docs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Query Parameters

fqn
string
required

Fully qualified name of the table (e.g., service.database.schema.table)

Minimum string length: 1
scope
enum<string>
required

Score type(s) to clear: data_quality, metadata, or all

Available options:
data_quality,
metadata,
all

Response

Successful Response

Result of clearing one or more score types for a table.

Previous data is preserved for history but no longer visible via the API. Running a new assessment restores the score for that type.

table_fqn
string
required

Fully qualified table name

scope
enum<string>[]
required

Score types that were cleared (e.g., ['data_quality', 'metadata'])

Score type(s) to clear for a table.

Available options:
data_quality,
metadata,
all