Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.74 KB

UpdateInstanceAuthConfigRequest.md

File metadata and controls

28 lines (22 loc) · 1.74 KB

ClerkBackend::UpdateInstanceAuthConfigRequest

Properties

Name Type Description Notes
restricted_to_allowlist Boolean Whether sign up is restricted to email addresses, phone numbers and usernames that are on the allowlist. [optional][default to false]
from_email_address String The local part of the email address from which authentication-related emails (e.g. OTP code, magic links) will be sent. Only alphanumeric values are allowed. Note that this value should contain only the local part of the address (e.g. `foo` for `[email protected]`). [optional]
progressive_sign_up Boolean Enable the Progressive Sign Up algorithm. Refer to the docs for more info. [optional]
session_token_template String The name of the JWT Template used to augment your session tokens. To disable this, pass an empty string. [optional]
enhanced_email_deliverability Boolean The "enhanced_email_deliverability" feature will send emails from "[email protected]" instead of your domain. This can be helpful if you do not have a high domain reputation. [optional]
test_mode Boolean Toggles test mode for this instance, allowing the use of test email addresses and phone numbers. Defaults to true for development instances. [optional]

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::UpdateInstanceAuthConfigRequest.new(
  restricted_to_allowlist: null,
  from_email_address: null,
  progressive_sign_up: null,
  session_token_template: null,
  enhanced_email_deliverability: null,
  test_mode: null
)