create

abstract suspend fun create(parameters: Passwords.CreateParameters): PasswordsCreateResponse

Create a new user with a password and an authenticated session for the user if requested. If a user with this email already exists in the project, this method will return an error.

Return

PasswordsCreateResponse

Parameters

parameters

required to create an account


abstract fun create(parameters: Passwords.CreateParameters, callback: (PasswordsCreateResponse) -> Unit)

Create a new user with a password and an authenticated session for the user if requested. If a user with this email already exists in the project, this method will return an error.

Parameters

parameters

required to create an account

callback

a callback that receives a PasswordsCreateResponse