signUpEmail()
Description
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.
Request
Parameters
Field | Required | Data Type | Description |
---|---|---|---|
string | User email | ||
password | string | User password |
Example
Response
Parameters
Field | Data Type | Description |
---|---|---|
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 |
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). |
Example
Last updated