Skip to main content
Version: 5.7.0

ResetEmailPassword

Sends a password reset email to the specified address.

ServiceOperation
authenticationV2RESET_EMAIL_PASSWORD

Method Parameters

ParameterDescription
emailAddressThe email address to send the reset email to.

Usage

http://localhost:3000
string emailAddress = "email@email.com";
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.Authenticate.ResetEmailPassword(emailAddress, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": null
}