Skip to main content
Get a list of events from the OneLogin account. Required Scope: Read Users, Manage users, Read All, or Manage All.
External DocumentationTo learn more, visit the OneLogin documentation.

Basic Parameters

ParameterDescription
Client IDThe ID of the client to filter by.
Directory IDThe ID of the directory to filter by.
Event IDThe ID of the event to filter by.
Event Type IDA comma-separated list of event type IDs to filter by. Can be obtained using Get Event Types action.
Return All PagesAutomatically fetch all resources, page by page.
SortThe attribute to sort the events by.
User IDThe user ID to filter by.

Advanced Parameters

ParameterDescription
Created AtThe exact creation date to filter by.
ResolutionThe resolution status to filter by.
SinceThe date and time to filter events that were created after this date.
UntilThe date and time to filter events that were created before this date.

Example Output

{
	"status": {
		"error": false,
		"code": 200,
		"type": "success",
		"message": "Success"
	},
	"pagination": {
		"before_cursor": null,
		"after_cursor": "xWNjb3VudF9pZDo6OjUzNDEzLS0jI2lkOjo6OTA0MjU3NTQ2",
		"previous_link": null,
		"next_link": "https://subdomain.onelogin.com/api/1/events?after_cursor=..."
	},
	"data": [
		{
			"id": 999999999,
			"created_at": "2014-12-19T02:02:39.276Z",
			"account_id": 55555,
			"user_id": 88888888,
			"event_type_id": 13,
			"notes": null,
			"ipaddr": "11.111.11.111",
			"actor_user_id": 7777777,
			"actor_user_name": "Xavier Wong",
			"user_name": "Xavier Wong",
			"risk_score": null
		}
	]
}

Workflow Library Example

Get Events with Onelogin and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop