Class UpdatePasswordRequest
This method is used to change a users password.
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| RequestId | string | Unique identifier used to identify the request. Used when associating the request to the response. |
| RequestDate | dateTime | DateTime request was made. Request timeout is 1 minute. |
| Company | string | REQUIRED. The users company name. |
| NewPassword | string | REQUIRED. The users new password. |
| Password | string | REQUIRED. The users current password. |
| PhoneKey | string | REQUIRED. The unique id for the phone. |
| UserName | string | REQUIRED. The users login name. |
Examples
{
"__type": "UpdatePasswordRequest:#JackHenry.Eps.Mobile.RDC",
"UserName": "String Content",
"Password": "String Content",
"NewPassword": "String Content",
"Company": "String Content",
"PhoneKey": "String Content"
}
Methods
Validate(IValidatorContext)
Declaration
public void Validate(IValidatorContext context)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| JHA.EPS.SharedService.Common.Validator.IValidatorContext | context |
Exceptions
| TYPE | DESCRIPTION |
|---|---|
| JHA.EPS.SharedService.Common.Validator.ValidationResult | Company cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | Password cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | UserName cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | NewPassword cannot be null |
| JHA.EPS.SharedService.Common.Validator.ValidationResult | PhoneKey cannot be null |