INPUT_OBJECT

RegistrationAccessEntryImportRowInput

link GraphQL Schema definition

1input RegistrationAccessEntryImportRowInput {
6
2# The matching value: an email domain such as acme.com, or a single email address
3# such as a@x.com.
4# Validated in every enforcement mode. CSV column: value.
5value: String!
12
7# Whether a matched registrant is sent an invite email. Omitted means false, also
8# when the row
9# updates an existing entry — a row carries the entry's whole state. CSV column:
10# sendInviteEmail.
11sendInviteEmail: Boolean
17
13# Application role IDs granted on registration. Must name at least one role, or an
14# authGroupId must be given.
15# CSV column: applicationRoleIds.
16applicationRoleIds: [ID!]!
20
18# Optional authorization group granted on registration. CSV column: authGroupId.
19authGroupId: ID
21}