> ## 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.

# Get Risky User

Get details of a risky user given its Risky User ID.

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

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                      |
  | ------------- | ------------------------------------------------------------------------------------------------ |
  | Risky User ID | The ID of the risky user to get details of. Can be retrieved from the `List Risky Users` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"value": [
		{
			"@odata.type": "#microsoft.graph.riskyUser",
			"id": "d1d4a5d4-a5d4-d1d4-d4a5-d4d1d4a5d4d1",
			"isDeleted": "Boolean",
			"isProcessing": "Boolean",
			"riskLastUpdatedDateTime": "String (timestamp)",
			"riskLevel": "String",
			"riskState": "String",
			"riskDetail": "String",
			"userDisplayName": "String",
			"userPrincipalName": "String"
		}
	]
}
```

## Workflow Library Example

[Get Risky User with Microsoft Entra Id and Send Results Via Email](https://library.blinkops.com/workflows/get-risky-user-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/get-risky-user-with-microsoft-entra-id-and-send-results-via-email/canvas" />
</div>
