OBJECT

RegistrationConfiguration

link GraphQL Schema definition

1type RegistrationConfiguration {
2
3# The unique identifier for the registration configuration.
4id: ID!
5
6# The organization GUID that the registration is associated with.
7organizationGuid: ID!
8
9# The name of the registration configuration.
10name: String!
11
12# The unique slug for the registration page URL.
13slug: String!
14
15# The list of file resources associated with the registration (e.g., TOS, Privacy
16# Policy).
17files: [OrgFileResource]
18
19# The status of the registration (open or restricted).
20openRegistrationStatus: OrgRegistrationStatus
21
22# A boolean indicating whether admin approval is required for user registration.
23adminApprovalRequired: Boolean
24
25# Custom UI settings for the registration page.
26uiSettings: OrgUISettings
27
28# A list of domain-specific settings for authorization groups and roles.
29domainSettings: [OrgDomainSettings]
30
31# The timestamp when the configuration was created.
32dateCreated: String!
33
34# The timestamp when the configuration was last modified.
35dateModified: String!
36
37}