Is there any Api to fetch classification Display name with respect to Entity ?

Savio Vegnesa 56 Reputation points
2022-09-05T07:39:46.963+00:00

Is there any api to find Classification display name with respect to report?

We tried with the Entity - Get Classifications Api but in that we only got the Formal name not Display name.

Microsoft Purview
Microsoft Purview
A Microsoft data governance service that helps manage and govern on-premises, multicloud, and software-as-a-service data. Previously known as Azure Purview.
1,065 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. ShaikMaheer-MSFT 38,401 Reputation points Microsoft Employee
    2022-09-07T09:35:47.19+00:00

    Hi @Savio Vegnesa ,

    Thank you for posting query in Microsoft Q&A Platform.

    At this moment from REST API we can only get Classification type Name only. We cannot get display name of it.

    Below are the two REST APIs that helps you to get to Classification details. We can get classification TypeName but not display name at this moment.

    Get Classification REST API:
    Documentation link: https://learn.microsoft.com/en-us/rest/api/purview/catalogdataplane/entity/get-classification?tabs=HTTP
    Sample Response:

    {  
      "typeName": "MICROSOFT.PERSONAL.DATE_OF_BIRTH",  
      "lastModifiedTS": "1",  
      "entityGuid": "9347abc5-7b86-4b82-a1e2-ad77c7c3cac3",  
      "entityStatus": "ACTIVE"  
    }  
    

    Get Classifications REST API:
    Documentation link: https://learn.microsoft.com/en-us/rest/api/purview/catalogdataplane/entity/get-classifications?tabs=HTTP
    Sample Response:

    {  
      "list": [  
        {  
          "typeName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER",  
          "entityGuid": "67d26de6-771d-1a2d-cb2b-dec4dbd2a9bd"  
        }  
      ],  
      "startIndex": 0,  
      "pageSize": 1,  
      "totalCount": 1,  
      "sortType": "NONE"  
    }  
    

    I encourage you to submit feedback for same in below feedbacks portal. Product team closely monitor feedbacks and consider them for future releases. Thank you.
    https://feedback.azure.com/d365community/forum/82d7bddb-fb24-ec11-b6e6-000d3a4f07b8

    Hope this helps. Please let me know if any further queries.

    ------------

    Please consider hitting Accept Answer button. Accepted answers helps community as well.