v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Data Assets

Create Tag Associations

Use this API to create tag associations for the specified data asset. The request should include the data asset ID and the list of tags to assign to the data asset. The response will confirm the successful associations and return the updated data asset ID.

post/api/data-governance/v1/data-assets/{dataAssetId}/tags

Path parameters

dataAssetIdstring uuid required

The unique identifier of the data asset.

Request body

tagIdstring uuid required

Unique identifier of the Glossary Tag

tagNamestring required

Name of the Glossary Tag

Example request

[
  {
    "tagId": "29d09995-6040-403f-b520-fa9b38ce0bf5",
    "tagName": "Confidential"
  }
]

Response

OK

idstring uuid

The unique identifier of the data asset.

Example response

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