Skip to main content
DELETE
/
utils
/
{resource_type}
/
{resource_uri}
/
metadata
Soft-delete metadata by FQN
curl --request DELETE \
  --url https://api.example.com/utils/{resource_type}/{resource_uri}/metadata \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Project-ID: <x-project-id>'
{
  "error": {
    "message": "<string>",
    "request_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "details": {}
  }
}

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

Query Parameters

fqn
string
required

Fully qualified name of the entity to delete

version
string
required

'*' to delete entity (all versions + cascade), or version string (e.g., '0.1') to delete a single version

Pattern: ^(\d+\.\d+|\*)$
asset_type
enum<string> | null

Asset type hint (for validation; not required since FQN is unique within tenant scope) Asset type discriminator values.

Available options:
database,
database_schema,
table,
column

Response

Deleted successfully