INPUT_OBJECT

InstanceAuditLogInput

link GraphQL Schema definition

1input InstanceAuditLogInput {
4
2# The unique ID of an audit log entry. Multiple values can be provided.
3id: [ID!]
7
5# User name on audit entry. It can be partial match.
6userName: String
10
8# User id on audit entry.
9userId: String
14
11# The names of the events involved in the audit action, such as [LoginSuccess,
12# LoginFailed]
13eventNames: [EventNameEnum]
17
15# The name of the event involved in the audit action, such as LoginSuccess
16eventName: EventNameEnum
22
18# Date/time up to which entries will be returned. In other words, the
19# end of the query time window.
20# Defaults to the current time.
21toDateTime: DateTime
27
23# Date/time from which entries will be returned. In other words, the
24# start of the query time window.
25# Defaults to the `toDateTime` minus 7 days.
26fromDateTime: DateTime
30
28# Offset into result set, for paging.
29offset: Int
35
31# Limit on result size, for paging (page size). Audit queries are
32# lightweight so the default of 100 is higher than the default offset
33# used elsewhere in the API.
34limit: Int
38
36# Order information. Default is order by `createdDateTime` descending.
37orderBy: [InstanceAuditLogOrderBy!]
41
39# The orgId on audit entry
40organizationId: ID
42}

link Required by

This element is not required by anyone