Class GetAccountsResponse
Results from an GetAccountsRequest.
Properties
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| RequestId | System.string | Unique identifier used to identify the request associated with the response. |
| Result | ResponseResultType | Value indicating type of result. Possible values: Error (default), Success, ValidationError, NoChange |
| ResultCode | System.string | Can be Error or Resource code depending on type of result. |
| ResultMessage | System.string | Message regarding details of the Result. |
| ValidationResults | ValidationResult[] | Array of ValidationResult objects containing messages regarding input validation. |
| Credentials | TokenCredentials | A security token representing an authenticated user which will be used in subsequent calls. The token expires after 20 minutes. |
| Accounts | Account[] | The list of user Accounts. |
Account
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| IsEnabled | System.Boolean | A Boolean value that indicates if the account is enabled or disabled. |
| Name | System.String | A string value with the Nickname of the account intended for the user. Max length 50 characters. Required field. |
| ReferenceId | System.String | A string value with the account identification number in the EPS system (this is not the account number). Must be a unique value that most often corresponds to the account's unique identifier in the Financial Institution's system. Max length 50 characters. Required field. |
| RoutingNumber | System.String | A string value with the deposit routing number. Max length 9 characters. Must be a valid U.S. routing number. Required field. |
| Type | System.String | An enumeration identifying the type of account. Possible values are: Checking, Savings, or GL. Required field. |
Examples
{
"__type": "GetAccountsResponse:#JackHenry.Eps.Mobile.RDA",
"Accounts": [
{
"__type": "Account:#JackHenry.Eps.Mobile.RDA",
"Name": "String Content",
"ReferenceId": "String Content",
"RoutingNumber": "String Content",
"Type": "String Content",
"IsEnabled": true
}
]
}
Methods
Exception(string)
Declaration
public void Exception(string message)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | message |
NullRequestResonse()
Declaration
public static Response NullRequestResonse()
Return Value
| TYPE | DESCRIPTION |
|---|---|
| Response |
Success()
Declaration
public void Success()
Success(String)
Declaration
public void Success(string resultMessage)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| System.String | resultMessage |