OBJECT
RegistrationConfigurationInfo
link GraphQL Schema definition
1 type RegistrationConfigurationInfo { 2 3 : ID! 4 5 : String! 6 7 : String! 8 9 # The organization GUID this registration configuration belongs to. 10 : ID 11 12 # Whether registration is open or restricted to allowlisted domains. 13 : OrgRegistrationStatus 14 15 # Whether admin approval is required for new registrations. 16 : Boolean 17 18 # Domain-specific settings (allowed domains, auth groups, application roles). 19 : [OrgDomainSettings] 20 21 : [OrgFileResource] 22 23 : OrgUISettings 24 25 }