1

I'm trying to get the name / email of a user that is a owner / expert of an entity in Purview. Is there an API endpoint that I can use for this? The current output i get is:

"contacts": {"Owner": [{"id": "XXXXXXXX-XXXX-XXXX-XXXXXXXXXXXX"}], "Expert": [{"id": "XXXXXXXX-XXXX-XXXX-XXXXXXXXXXXX"}]}
Ecstasy
  • 1,866
  • 1
  • 9
  • 17
Sam Bong
  • 31
  • 1

1 Answers1

-1

I'm from the Microsoft for Founders Hub team. Please use the below command and result includes Owner/Expert details.

GET {Endpoint}/catalog/api/atlas/v2/entity/guid/{guid}?minExtInfo={minExtInfo}&ignoreRelationships={ignoreRelationships}
  • I do apologize for introduce the spelling error when when editing your answer. Thanks for correcting that. – Jeremy Caney May 16 '22 at 21:38
  • 1
    Setting both parameters to true does not change anything to me. I still get only the Owners and Experts IDs – Robin Jul 19 '22 at 14:11
  • `minExtInfo` is about 'whether to return minimal information for referred entities.' and `ignoreRelationships` is about 'whether to ignore relationship attributes'. Neither helper this use case. https://learn.microsoft.com/en-us/rest/api/purview/catalogdataplane/entity/get-by-guid?tabs=HTTP – AmyChodorowski Jul 19 '23 at 15:23