How to use REST API to extract role assignment information from a Azure Purview account?

718 Views Asked by At

I want to obtain role assignment information from Azure Purview instances using REST API calls in my application. The desired information is the email addresses and groups under each role as indicated by the red arrows in the image at the end.

I have tried to follow the Microsoft doc (link) and tried the API below.

GET {Endpoint}/policyStore/metadataRoles?api-version=2021-07-01-preview

However, I could only get the default metadata roles in the response, such as

purviewmetadatarole_builtin_data-source-administrator

I am new to Purview, so please forgive me if this is a silly question. Is there an API that can properly extract role assignment information?

Image - Role assignment information is indicated by red arrows

1

There are 1 best solutions below

2
On

Metadata Roles – List REST API returns the list roles for Azure Purview Account.

enter image description here

Metadata Policy - List All REST API returns the list or Get metadata polices for Azure Purview Account.

enter image description here

Note: This attribute Value will be Object ID of the user/app registered in the Azure Active Directory.

enter image description here

Metadata Policy - Get REST API returns Gets a metadata policy for Azure Purview Account.

Note: Make sure to replace the {policyId} with the above value.

enter image description here