> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List User Directory Roles

List the directory roles that the user is a direct member of. This operation isn't transitive.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `Directory.Read.All`.
* **Higher privileged** Microsoft Graph permission to access the action via **application**: `Directory.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Entra ID documentation](https://learn.microsoft.com/en-us/graph/api/user-list-memberof?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                       |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter           | Optional filter string. Visit the [Microsoft documentation](https://learn.microsoft.com/en-us/graph/filter-query-parameter) for more information. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                  |
  | Select           | A comma-separated list of columns to retrieve.<br /><br />**For Example:** `id,displayName`                                                       |
  | User ID          | The user ID or principal name of the user.                                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryRoles",
	"value": [
		{
			"id": "9ed3a0c4-53e1-498c-ab4d-2473476fde14",
			"deletedDateTime": null,
			"description": "Can manage all aspects of Azure AD and Microsoft services that use Azure AD identities.",
			"displayName": "Global Administrator",
			"roleTemplateId": "62e90394-69f5-4237-9190-012177145e10"
		}
	]
}
```

## Workflow Library Example

[List User Directory Roles with Microsoft Entra Id and Send Results Via Email](https://library.blinkops.com/workflows/list-user-directory-roles-with-microsoft-entra-id-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-user-directory-roles-with-microsoft-entra-id-and-send-results-via-email/canvas" />
</div>
