You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>
/// Generate a new Email Verification Id to be used with the Verify Email API. This API will not attempt to send an
/// email to the User. This API may be used to collect the verificationId for use with a third party system.
/// This is an asynchronous method.
/// </summary>
/// <param name="email"> The email address of the user that needs a new verification email.</param>
/// <returns>
/// When successful, the response will contain the log of the action. If there was a validation error or any
/// other type of error, this will return the Errors object in the response. Additionally, if FusionAuth could not be
/// contacted because it is down or experiencing a failure, the response will contain an Exception, which could be an
/// IOException.
/// </returns>
Task<ClientResponse<VerifyEmailResponse>> GenerateEmailVerificationIdAsync(string email);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: