OBJECT
InstanceAuditLogEntry
link GraphQL Schema definition
1 type InstanceAuditLogEntry { 2 3 # The unique ID of the audit log entry. 4 : ID! 5 6 # The eventId of the audit log entry. 7 : ID 8 9 # ID of the organization that generated the audit entry. 10 : ID 11 12 # Guid of the organization that generated the audit entry. 13 : String 14 15 # Name of the organization that generated the audit entry. 16 : String 17 18 # User ID that generated the audit entry. This might be an API key. 19 : ID 20 21 # User name or ID that generated the audit entry. This might be an API key. 22 : String 23 24 # IP address of the client that generated the audit action. 25 : String 26 27 # HTTP user agent of the client that generated the audit action. 28 : String 29 30 # Description about the audit log. 31 : String 32 33 # Date/time at which the audit log entry was created. 34 : DateTime! 35 36 # The type of event involved in the audit action, such as `login`. 37 : EventTypeEnum 38 39 # A name for the event involved in the audit action. 40 : EventNameEnum 41 42 # The type of the object involved in the audit action, such as `Watchlist` 43 # or `TemporalDataObject`. 44 : TargetTypeEnum 45 46 # The ID of the object involved in the audit action. The format of this ID 47 # varies by object type. 48 : ID 49 50 # Indicates whether or not the attempted action was successful. 51 : ActionResultEnum 52 53 # The type of action involved in the audit action, such as `created` 54 # or `login`. 55 : ActionNameEnum 56 57 # Indicates the application involved in the audit action. 58 : ID 59 60 # Indicates the service involved in the audit action. 61 : String 62 63 # The userId that creates the action involved in the audit action on behalf of a 64 # user via impersonation. 65 : ID 66 67 # The username that creates the action involved in the audit action on behalf of a 68 # user via impersonation. 69 : ID 70 71 # The correlation ID of the audit log entry. 72 : String 73 74 }