Skip to main content
Version: 5.7.0

ResetUniversalIdPasswordAdvanced

Advanced universalId password reset using templates.

ServiceOperation
authenticationV2RESET_UNIVERSAL_ID_PASSWORD_ADVANCED

Method Parameters

ParameterDescription
universalIdThe universalId to send the reset email to.
serviceParamsSet of parameters dependant on the mail service configured.

Usage

http://localhost:3000
string universalId = "universalId";
string serviceParams = "{\"templateId\": \"d-template-id-guid\", \"dynamicData\": {\"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.AuthenticationService.ResetUniversalIdPasswordAdvanced (dynamic template)(universalId, serviceParams, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": null
}