Skip to content

Latest commit

 

History

History
72 lines (64 loc) · 3.96 KB

File metadata and controls

72 lines (64 loc) · 3.96 KB

Event

Properties

Name Type Description Notes
account_id int Account that triggered the event. [optional]
actor_system str Acting system that triggered the event when the actor is not a user. [optional]
actor_user_id int ID of the user whose action triggered the event. [optional]
actor_user_name str First and last name of the user whose action triggered the event. [optional]
adc_id int [optional]
app_name str Name of the app involved in the event, if applicable. [optional]
app_id int ID of the app involved in the event, if applicable. [optional]
assumed_by_superadmin_or_reseller int [optional]
assuming_acting_user_id int ID of the user who assumed the role of the acting user to trigger the event, if applicable. [optional]
certificate_id int [optional]
client_id str Client ID used to generate the access token that made the API call that generated the event. [optional]
created_at str ISO8601 Time and date at which the event was created. This value is autogenerated by OneLogin. [optional]
custom_message str More details about the event. [optional]
directory_sync_run_id int Directory sync run ID. [optional]
error_description str Provisioning error details, if applicable. [optional]
event_type_id int Type of event triggered. [optional]
group_name str Name of a group involved in the event. [optional]
group_id int ID of a group involved in the event. [optional]
id int Event's unique ID in OneLogin. Autogenerated by OneLogin. [optional]
ipaddr str IP address of the machine used to trigger the event. [optional]
mapping_id int [optional]
notes str More details about the event. [optional]
object_id int [optional]
otp_device_id int ID of a device involved in the event. [optional]
otp_device_name str Name of a device involved in the event. [optional]
param str [optional]
policy_id int ID of the policy involved in the event. [optional]
policy_name str Name of the policy involved in the event. [optional]
policy_type str [optional]
privilege_id int [optional]
proxy_ip str [optional]
radius_config_id int [optional]
resolved_at str [optional]
resource_type_id int ID of the resource (user, role, group, and so forth) associated with the event. [optional]
risk_cookie_id str Identifier for risk cookie [optional]
risk_reasons str [optional]
risk_score int [optional]
role_id int ID of a role involved in the event. [optional]
role_name str Name of a role involved in the event. [optional]
service_directory_id int [optional]
solved bool [optional]
trusted_idp_id int [optional]
user_field_id int [optional]
user_id int ID of the user that was acted upon to trigger the event. [optional]
user_name str Name of the user that was acted upon to trigger the event. [optional]

Example

from onelogin.models.event import Event

# TODO update the JSON string below
json = "{}"
# create an instance of Event from a JSON string
event_instance = Event.from_json(json)
# print the JSON string representation of the object
print Event.to_json()

# convert the object into a dict
event_dict = event_instance.to_dict()
# create an instance of Event from a dict
event_form_dict = event.from_dict(event_dict)

[Back to Model list] [Back to API list] [Back to README]