OBJECT

AuditLogEntry

link GraphQL Schema definition

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