FusionAuth / fusionauth-netcore-client

The .NET Core client for FusionAuth
https://fusionauth.io
Apache License 2.0
28 stars 11 forks source link

GenerateEmailVerificationIdAsync Does not generate an Email VerificationId and does not correspond to Documentation #64

Open YingMorris opened 1 year ago

YingMorris commented 1 year ago
/// <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);