Skip to main content
POST
/
utils
/
metadata
/
tags
/
delete
Bulk soft-delete tags
curl --request POST \
  --url https://api.example.com/utils/metadata/tags/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fqns": [
    "<string>"
  ]
}
'
{
  "items": [
    {
      "fqn": "<string>",
      "message": "<string>"
    }
  ],
  "errors": [
    {
      "fqn": "<string>",
      "detail": "<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.

Body

application/json

Request body for bulk delete tags by FQN.

fqns
string[]
required

List of fully qualified names to delete

Required array length: 1 - 100 elements

Response

Successful Response

Response for bulk delete tags.

items
BulkDeleteTagItemResult · object[]
required
errors
MetadataItemError · object[]
required