# Manage user pool configuration
Authing user pool configuration management module.
# Query user pool configuration
UserPoolManagementClient().detail()
Query user pool configuration
# Example
UserPool userPool = managementClient.userpool().detail();
# Update user pool configuration
UserPoolManagementClient().update(updates)
Update user pool configuration
# Parameters
updates
<UpdateUserpoolInput>updates.name
<string> user pool nameupdates.logo
<string> user pool logoupdates.domain
<string> User pool enterprise application panel second-level domain nameupdates.description
<string> description informationupdates.emailVerifiedDefault
<boolean> set the mailbox to be verified by default (the user's emailVerified field is true)updates.sendWelcomeEmail
<boolean> Whether to send welcome email after user registrationupdates.registerDisabled
<boolean> Whether to close the registration, when the user pool closes the registration, ordinary users will not be able to register accounts, only the administrator can manually create accounts.updates.allowedOrigins
<string> Security domain configuration, security domain (Allowed Origins) is the URL that allows requests from JavaScript to the Authing API (usually used with CORS). By default, the system will allow you to use all URLs. If required, this field allows you to enter other sources. You can separate multiple valid URLs line by line and use wildcards at the subdomain level (for example: https://*.sample.com). The query string and hash information are not considered when verifying these URLs. If you bring the query string and hash information, the system will automatically ignore the entire domain name. If there are more than one, please separate them with line breaks.updates.whitelist
<Object> User pool whitelist configurationupdates.whitelist.phoneEnabled
<boolean> Whether to enable the whitelist of mobile phone numbersupdates.whitelist.emailEnabled
<boolean> Whether to enable the mailbox whitelistupdates.whitelist.usernameEnabled
<boolean> Whether to enable username whitelistupdates.tokenExpiresAfter
<number> token expiration timeupdates.loginFailCheck
<Object> Frequent login failure limit, after opening, after the specified time exceeds the number of times, a verification code is required to log in again. If your business has concurrent logins in the same area and time period, please turn off this detection. -Whetherupdates.loginFailCheck.enabled
<boolean> is enabledupdates.loginFailCheck.timeInterval
<number> The detection period, in seconds.updates.loginFailCheck.limit
<number> The limit condition will be triggered when the number of login failures for the same IP reaches.updates.frequentRegisterCheck
<Object> frequency registration limit, after opening the same IP frequently registered account will trigger the frequency limit, it will take a while to re-register. If your business has concurrent registration scenarios in the same area and time period, please turn off this detection. -Whetherupdates.frequentRegisterCheck.enabled
<boolean> is enabledupdates.frequentRegisterCheck.timeInterval
<Object> detection period, in seconds.updates.frequentRegisterCheck.limit
<Object> The frequency limit will be triggered when the number of registrations of the same IP in the same period reaches this number.
# Example
UserPool userPool = managementClient.userpool().update(new UpdateUserpoolInput().withDescription("desc")).execute();
# Get a list of environment variables
UserPoolManagementClient().listEnv()
Get the list of user pool environment variables. The environment variables configured by the user pool can be used in the pipeline scenario, please see: https://docs.authing.co/extensibility/pipeline/env.html
# Example
List<Env> list = managementClient.userpool().listEnv().execute();
# Add environment variables
UserPoolManagementClient().addEnv(key, value)
Add environment variables
# Parameters
key
<string> environment variable keyvalue
<any> environment variable value
# Example
Env env = managementClient.userpool().addEnv("key", "value").execute();
# Delete environment variables
UserPoolManagementClient().removeEnv(key)
Delete environment variables
# Parameters
key
<string> environment variable key
# Example
CommonMessage message = managementClient.userpool().removeEnv("key").execute();