OBJECT
RegistrationConfiguration
link GraphQL Schema definition
1 type RegistrationConfiguration { 2 3 # The unique identifier for the registration configuration. 4 ID! : 5 6 # The organization GUID that the registration is associated with. 7 ID! : 8 9 # The name of the registration configuration. 10 String! : 11 12 # The unique slug for the registration page URL. 13 String! : 14 15 # The list of file resources associated with the registration (e.g., TOS, Privacy 16 # Policy). 17 OrgFileResource] : [ 18 19 # The status of the registration (open or restricted). 20 OrgRegistrationStatus : 21 22 # A boolean indicating whether admin approval is required for user registration. 23 Boolean : 24 25 # Custom UI settings for the registration page. 26 OrgUISettings : 27 28 # A list of domain-specific settings for authorization groups and roles. 29 OrgDomainSettings] : [ 30 31 # The timestamp when the configuration was created. 32 String! : 33 34 # The timestamp when the configuration was last modified. 35 String! : 36 37 }
link Required by
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- RegistrationConfigurationList