v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Data Asset Management

Delete Multiple Data Asset Term Associations

Use this API to delete multiple term associations from a specified data asset using its ID. The request should include the asset ID and a list of terms to be removed. The response will confirm the successful removal of associations and return the updated asset ID.

post/api/data-governance/v1/data-assets/{dataAssetId}/terms/deleteTermAssociations

Path parameters

dataAssetIdstring uuid required

The unique identifier of a data-asset.

Request body

termIdstring uuid required

Unique identifier of the Glossary Term

termNamestring required

Name of the Glossary Term

Example request

[
  {
    "termId": "29d09995-6040-403f-b520-fa9b38ce0bf5",
    "termName": "Social Security Number"
  }
]

Response

OK

idstring uuid

The unique identifier of the data asset.

Example response

{
  "id": "6756206c-845c-4ecc-8826-0e25d12b0d0c"
}