SysSendPasswordResetUniversalId
Reset users password.
Service | Operation |
---|---|
user | SYS_SEND_PASSWORD_RESET_UNIVERSAL_ID |
Method Parameters
Parameter | Description |
---|---|
profileId | The universal Id of the target user to reset password |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
var userProxy = bridge.getUserServiceProxy();
var postResult = userProxy.sysSendPasswordResetUniversalId(
"aaa-bbb-ccc-ddd" // profileId
);
if (postResult.status == 200) {
// Success!
}
// Cloud Code only. To view example, switch to the Cloud Code tab
JSON Response
{
"status": 200,
"data": null
}