Skip to main content

EventDocument

Event

Properties

NameTypeDescriptionNotes
idstrID of the entitlement.[optional]
namestrName of the entitlement.[optional]
createddatetimeISO-8601 date-time referring to the time when the object was created.[optional]
syncedstrISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. There may be some delay between the synced time and the time when the updated data is actually available in the search API.[optional]
actionstrName of the event as it's displayed in audit reports.[optional]
typestrEvent type. Refer to Event Types for a list of event types and their meanings.[optional]
actorEventActor[optional]
targetEventTarget[optional]
stackstrThe event's stack.[optional]
tracking_numberstrID of the group of events.[optional]
ip_addressstrTarget system's IP address.[optional]
detailsstrID of event's details.[optional]
attributesmap[string]objectAttributes involved in the event.[optional]
objects[]strObjects the event is happening to.[optional]
operationstrOperation, or action, performed during the event.[optional]
statusstrEvent status. Refer to Event Statuses for a list of event statuses and their meanings.[optional]
technical_namestrEvent's normalized name. This normalized name always follows the pattern of 'objects_operation_status'.[optional]
}

Example

from sailpoint.v2024.models.event_document import EventDocument

event_document = EventDocument(
id='2c91808375d8e80a0175e1f88a575222',
name='Add Entitlement Passed',
created='2018-06-25T20:22:28.104Z',
synced='2018-06-25T20:22:28.104Z',
action='AddEntitlement',
type='ACCESS_ITEM',
actor=sailpoint.v2024.models.event_actor.Event_actor(
name = 'System', ),
target=sailpoint.v2024.models.event_target.Event_target(
name = 'Carol.Adams', ),
stack='tpe',
tracking_number='63f891e0735f4cc8bf1968144a1e7440',
ip_address='52.52.97.85',
details='73b65dfbed1842548c207432a18c84b0',
attributes={pod=stg03-useast1, org=acme, sourceName=SailPoint},
objects=[
'AUTHENTICATION'
],
operation='ADD',
status='PASSED',
technical_name='ENTITLEMENT_ADD_PASSED'
)

[Back to top]