A unified data governance solution that helps manage, protect, and discover data across your organization
Hi M, Akhil,
Yes, this behavior is expected.The Critical Data Element relationships API only returns the entityId of the CriticalDataColumn. This ID represents the catalog asset for the column. To identify the actual column (for example in Azure Databricks), you need to resolve that ID using the Data Column API.
Steps to map CDE → actual data column
Get the Data Column details
GET {endpoint}/datagovernance/catalog/dataColumns/{entity_id}?api-version=2025-09-15-preview
This returns metadata such as qualifiedName, displayName, and description. The qualifiedName contains the full path of the asset (catalog / schema / table / column), which helps identify the actual column in Databricks.
(Optional) Get the parent table metadata
GET {endpoint}/datagovernance/catalog/dataColumns/{entity_id}/relationships?api-version=2025-09-15-preview&entityType=CollectionEntity
Then retrieve the table information:
GET {endpoint}/datagovernance/catalog/dataCollections/{table_entity_id}?api-version=2025-09-15-preview
Flow
CriticalDataElement
→ relationships API
→ CriticalDataColumn entityId
→ DataColumns GET API
→ qualifiedName (catalog/schema/table/column)
This is the standard way to trace a CDE to its underlying data column in Microsoft Purview.
Reference documentation
- Microsoft Purview Data Governance REST API overview https://learn.microsoft.com/azure/purview/data-governance-api-overview
- Critical Data Elements API https://learn.microsoft.com/rest/api/purview/datagovernance/critical-data-elements
- Data Columns API https://learn.microsoft.com/rest/api/purview/datagovernance/data-columns
- Data Column relationships https://learn.microsoft.com/rest/api/purview/datagovernance/data-columns/relationships
Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help. Please do not forget to "up-vote" wherever the information provided helps you, as this can be beneficial to other community members.