update
suspend fun SignUp.update(updateParams: SignUp.SignUpUpdateParams): ClerkResult<SignUp, ClerkErrorResponse>
Updates the sign-up with additional information.
Return
A ClerkResult containing the updated SignUp object on success, or a ClerkErrorResponse on failure.
Parameters
updateParams
The parameters for updating the sign-up.
Updates the sign-up with additional information.
Return
A ClerkResult containing the updated SignUp object on success, or a ClerkErrorResponse on failure.
Example usage:
signUp.update {
firstName = "John"
lastName = "Doe"
}Content copied to clipboard
Parameters
block
Builder block to configure the update.