INPUT_OBJECT

CreateRegistrationAccessEntryInput

link GraphQL Schema definition

1input CreateRegistrationAccessEntryInput {
4
2# The registration configuration the entry belongs to.
3registrationConfigurationId: ID!
9
5# The matching value: an email domain such as acme.com, or a single email address
6# such as a@x.com.
7# Validated in every enforcement mode; must be unique within the configuration.
8value: String!
12
10# Whether a matched registrant is sent an invite email. Defaults to false.
11sendInviteEmail: Boolean
16
13# Application role IDs granted on registration. Must name at least one role, or an
14# authGroupId must be given.
15applicationRoleIds: [ID!]!
19
17# Optional authorization group granted on registration.
18authGroupId: ID
20}