OBJECT
AuditLogEntry
link GraphQL Schema definition
1 type AuditLogEntry { 2 3 #   ID of the organization that generated the audit entry. 4 : ID  5 6 #   The type of the object involved in the audit action, such as `Watchlist` 7 #   or `TemporalDataObject`. 8 : String  9 10 #   The ID of the object involved in the audit action. The format of this ID 11 #   varies by object type. 12 : ID  13 14 #   The unique ID of the audit log entry. 15 : ID!  16 17 #   The event type, such as `Create`, `Update`, or `Delete`. 18 : String  19 20 #   User name or ID that generated the audit entry. This might be an API key. 21 : String  22 23 #   Indicates whether or not the attempted action was successful. 24 : Boolean  25 26 #   IP address of the client that generated the audit action. 27 : String  28 29 #   HTTP user agent of the client that generated the audit action. 30 : String  31 32 : String  33 34 #   Date/time at which the audit log entry was created. 35 : DateTime!  36 37 }