Skip to main content
POST
/
utils
/
{resource_type}
/
{resource_uri}
/
metadata
/
clear-enrichments
Clear enrichment fields on child entities
curl --request POST \
  --url https://api.example.com/utils/{resource_type}/{resource_uri}/metadata/clear-enrichments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Project-ID: <x-project-id>' \
  --data '
{
  "fqn": "<string>",
  "version_change_reason": "<string>",
  "change_source": "<string>"
}
'
{
  "parent_fqn": "<string>",
  "children_cleared": 123,
  "items": [
    {
      "fqn": "<string>",
      "version": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Project-ID
string
required

Path Parameters

resource_type
string
required
resource_uri
string
required

Body

application/json

Request body for clearing enrichment fields on child entities.

fqn
string
required

FQN of the parent entity whose children will be cleared. Schema FQN (3 segments) clears tables; Table FQN (4 segments) clears columns.

Required string length: 1 - 512
version_change_reason
string
required

Reason for clearing enrichments (recorded in version history)

Required string length: 1 - 500
change_source
string | null

Source of change: manual, ai, automated, etc.

Maximum string length: 64

Response

Fields cleared

Response for clear enrichments endpoint.

parent_fqn
string
required
children_cleared
integer
required

Number of child entities that were updated

items
ClearEnrichmentsItemResult · object[]
required