Class UpdatePasswordRequest
Used to change a users password.
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| RequestId | System.string | Unique identifier used to identify the request. Used when associating the request to the response. |
| RequestDate | System.DateTime | DateTime request was made. Request timeout is 1 minute. |
| Company | System.String | REQUIRED. A string value. The users company name in the EPS system. This value is system generated and provided by EPS and correlates to the Financial Institutions RDA MID. |
| NewPassword | System.String | REQUIRED. The user’s new password. |
| Password | System.String | REQUIRED. A string value. The user’s password in the EPS system assigned during user registration or by the user. |
| PhoneKey | System.String | REQUIRED. The unique id for the phone. A GUID created by the app vendor at first time use and stored in long term storage on the device which is intended to be unique to the device and application. Limit of 100 characters. Printable characters only. |
| UserName | System.String | REQUIRED. A string value. The user’s direct login name in the EPS system assigned during user registration. |
Examples
{
"__type": "UpdatePasswordRequest:#JackHenry.Eps.Mobile.RDA",
"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 |