> ## 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 Event By ID

Get event details by its ID.

**Required Scope**: `Read Users`, `Manage users`, `Read All`, or `Manage All`.

<Note>
  External Documentation

  To learn more, visit the [OneLogin documentation](https://developers.onelogin.com/api-docs/1/events/get-event-by-id).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                      |
  | --------- | -------------------------------- |
  | Event ID  | The ID of the event to retrieve. |
</div>

## Example Output

```json theme={"dark"}
{
	"status": {
		"error": false,
		"code": 200,
		"type": "success",
		"message": "Success"
	},
	"data": [
		{
			"id": 123456,
			"created_at": "2014-02-18T02:34:15.626Z",
			"account_id": 1,
			"user_id": 654321,
			"event_type_id": 8,
			"notes": "Initiated by OneLogin via SAML",
			"ipaddr": "123.456.789.0",
			"actor_user_id": 987654,
			"app_id": 11111,
			"app_name": "AppWonder",
			"actor_user_name": "Santiago Cuong",
			"user_name": "Santiago Cuong",
			"risk_score": 48,
			"risk_reasons": "Infrequent access from 73.68.253.46 (13%)"
		}
	]
}
```

## Workflow Library Example

[Get Event by Id with Onelogin and Send Results Via Email](https://library.blinkops.com/workflows/get-event-by-id-with-onelogin-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-event-by-id-with-onelogin-and-send-results-via-email/canvas" />
</div>
