OBJECT

InstanceAuditLogEntry

link GraphQL Schema definition

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