ResetEmailPasswordAdvanced
Advanced reset email password using templates
Service | Operation |
---|---|
authenticationV2 | RESET_EMAIL_PASSWORD_ADVANCED |
Method Parameters
Parameter | Description |
---|---|
emailAddress | The email address to send the reset email to. |
serviceParams | Set of parameters dependant on the mail service configured. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
string emailAddress = "email@email.com";
string serviceParams = "{\"templateId\":\"template-id-guid\",\"substitutions\":{\"aKey\":\"aValue\"},\"categories\":[\"category1\",\"category2\"]}";
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.ResetEmailPasswordAdvanced(emailAddress, serviceParams, successCallback, failureCallback);
const char *emailAddress = "email@email.com";
const char *serviceParams = "{\"templateId\":\"template-id-guid\",\"substitutions\":{\"aKey\":\"aValue\"},\"categories\":[\"category1\",\"category2\"]}";
_bc->getAuthenticationService()->resetEmailPasswordAdvanced(emailAddress, serviceParams, this);
NSString *emailAddress = @"email@email.com";
NSString *serviceParams = @"{\"templateId\":\"template-id-guid\",\"substitutions\":{\"aKey\":\"aValue\"},\"categories\":[\"category1\",\"category2\"]}";
BCCompletionBlock successBlock; // define callback
BCErrorCompletionBlock failureBlock; // define callback
[[_bc authenticateService] resetEmailPasswordAdvanced:emailAddress
serviceParams:serviceParams
completionBlock:successBlock
errorCompletionBlock:failureBlock
cbObject:nil];
String emailAddress = "email@email.com";
String serviceParams = "{\"templateId\":\"template-id-guid\",\"substitutions\":{\"aKey\":\"aValue\"},\"categories\":[\"category1\",\"category2\"]}";
this; // implements IServerCallback
_bc.getAuthenticationService().resetEmailPasswordAdvanced(emailAddress, serviceParams, this);
public void serverCallback(ServiceName serviceName, ServiceOperation serviceOperation, JSONObject jsonData)
{
System.out.print(String.format("Success | %s", jsonData.toString()));
}
public void serverError(ServiceName serviceName, ServiceOperation serviceOperation, int statusCode, int reasonCode, String jsonError)
{
System.out.print(String.format("Failed | %d %d %s", statusCode, reasonCode, jsonError.toString()));
}
var emailAddress = "email@email.com";
var serviceParams = {
"templateId": "template-id-guid",
"substitutions": {
"aKey": "aValue"
},
"categories": [
"category1",
"category2"
]
};
_bc.authenticate.resetEmailPasswordAdvanced(emailAddress, serviceParams, result =>
{
var status = result.status;
console.log(status + " : " + JSON.stringify(result, null, 2));
});
var emailAddress = "email@email.com";
var serviceParams = {
"templateId": "template-id-guid",
"substitutions": {
"aKey": "aValue"
},
"categories": [
"category1",
"category2"
]
};
ServerResponse result = await _bc.resetEmailPasswordAdvanced(
emailAddress:emailAddress,
serviceParams:serviceParams);
if (result.statusCode == 200) {
print("Success");
} else {
print("Failed ${result.error['status_message'] ?? result.error}");
}
// N/A
// N/A
JSON Response
{
"status": 200,
"data": null
}