ResetUniversalIdPassword
Reset Universal ID password.
Service | Operation |
---|---|
authenticationV2 | RESET_UNIVERSAL_ID_PASSWORD |
Method Parameters
Parameter | Description |
---|---|
universalId | The universalId to send the reset email to. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
string universalId = "universalId";
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.AuthenticationService.ResetUniversalIdPassword(universalId, successCallback, failureCallback);
const char *universalId = "universalId";
_bc.getAuthenticationService().resetUniversalIdPassword(universalId, this);
NSString *universalId = @"universalId";
BCCompletionBlock successBlock; // define callback
BCErrorCompletionBlock failureBlock; // define callback
[[_bc authenticationService] resetUniversalIdPassword:
universalId:universalId
completionBlock:successBlock
errorCompletionBlock:failureBlock
cbObject:nil]
String universalId = "universalId";
this; // implements IServerCallback
_bc.getAuthenticationService.resetUniversalIdPassword(universalId, 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 universalId = "universalId";
_bc.authentication.resetUniversalIdPassword(universalId, result =>
{
var status = result.status;
console.log(status + " : " + JSON.stringify(result, null, 2));
});
var universalId = "universalId";
ServerResponse result = await _bc.authenticationService.resetUniversalIdPassword(universalId:universalId);
if (result.statusCode == 200) {
print("Success");
} else {
print("Failed ${result.error['status_message'] ?? result.error}");
}
var universalId = "universalId";
var authenticationProxy = bridge.getAuthenticationServiceProxy();
var postResult = authenticationProxy.resetUniversalIdPassword(universalId);
if (postResult.status == 200) {
// Success!
}
{
"service":"authenticationV2",
"operation":"RESET_UNIVERSAL_ID_PASSWORD",
"data":{
"universalId":"universalId"
}
}
JSON Response
{
"status": 200,
"data": null
}