Skip to main content

Class Account

Object representing the users Account information. i.e. Account number, Routing number.


Properties

NAMETYPEDESCRIPTION
IsEnabledSystem.BooleanA Boolean value that indicates if the account is enabled or disabled.
NameSystem.StringA string value with the Nickname of the account intended for the user. Max length 50 characters. Required field.
ReferenceIdSystem.StringA 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.
RoutingNumberSystem.StringA string value with the deposit routing number. Max length 9 characters. Must be a valid U.S. routing number. Required field.
TypeSystem.StringAn enumeration identifying the type of account. Possible values are: Checking, Savings, or GL. Required field.

Examples

{
"__type": "Account:#JackHenry.Eps.Mobile.RDA",
"Name": "String Content",
"ReferenceId": "String Content",
"RoutingNumber": "String Content",
"Type": "String Content",
"IsEnabled": true
}