signUpEmail()
Last updated
Last updated
Signup with the provided email and password. The endpoint will also automatically create a new user object in the Users table. If you have email verification enabled in authentication settings, the system will first create the user in a disabled state and send a verification email to the user with a link to verify the email. Once the email is verified the user will be transformed into an enabled state. In order to verify the email, use Verify Email method.
Field | Required | Data Type | Description |
---|---|---|---|
Field | Data Type | Description |
---|---|---|
string
User email
password
string
User password
uid
string
User email
string
User password
emailVerified
boolean
Whether the user has verified their email by following the link sent to their email.
disabled
boolean
Whether the user account is disabled.
It will be set to false
if email verification is enforced and the user hasn't verified the email yet.
idToken
string
refreshToken
string
Token that can be used to refresh idToken via refreshToken() method
expiresIn
string
How long the token is valid for (in seconds).
User authorization token that should be used for requests that require authorization. View for more information.