Skip to main content

Class GetAccountsResponse


Properties

NAMETYPELENGTHDESCRIPTION
CustomerNumberstring50Unique identifier of the registered customer.
AccountTypeenum of Type WSAccountTypePossible responses are:
  • Checking
  • Savings
  • Treasury_Check
  • Money_Order
  • Travelers_Check
  • Convenience_Check
  • Visa
  • MasterCard
  • Discover__Novus
  • American_Express
  • Diners__Carte_Blanche
  • enRoute JCB
  • Bank_Card
  • Gift_Card
  • On_Us_Card
  • Payroll_Card
  • Cashiers_Check
  • FedNow
  • Virtual Card
  • __None
NameOnAccountstring50Customer’s name as it appears on their account.
AccountNamestring50Customer’s name or an account nickname.
AccountNumberstring17Only the last 4 digits are displayed.
RoutingNumberint9The request will return zeroes if this is a credit card account.
ExpirationMonthByte2For credit card accounts only. The request will return a zero (0) if this is a checking or savings account.
ExpirationYearByte2For credit card accounts only. The request will return a zero (0) if this is a checking or savings account.
BillAddress1string50Customer’s address, if available.
BillAddress2string50Customer’s additional address info, if available.
BillCitystring40City where the customer resides.
BillStateRegionstring40State in which the customer resides.
BillPostalCodestring10Zip code where the customer resides.
BillCountrystring40Country in which the customer resides.
ApprovedboolNo longer used.
UsedForMatchingboolNo longer used.
AccountReferenceIDstring50Unique identifier of each specific account.

Examples

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetAccountResponse xmlns="https://ssl.selectpayment.com/PV">
<GetAccountResult>
<CustomerNumber>0013</CustomerNumber>
<AccountType>Visa</AccountType>
<NameOnAccount>Lucy Visa</NameOnAccount>
<AccountName>Lucy Visa (5675)</AccountName>
<AccountNumber>XXXXXXXXXXXX5675</AccountNumber>
<RoutingNumber>0</RoutingNumber>
<ExpirationMonth>5</ExpirationMonth>
<ExpirationYear>25</ExpirationYear>
<BillAddress1>100 Billing St</BillAddress1>
<BillAddress2/>
<BillCity>Plano</BillCity>
<BillStateRegion>TX</BillStateRegion>
<BillPostalCode>75024</BillPostalCode>
<BillCountry>US</BillCountry>
<Approved>false</Approved>
<UsedForMatching>false</UsedForMatching>
<AccountReferenceID>FF00FB41-1E8E-469F-8A8A-6BE879A490FD</AccountReferenceID>
</GetAccountResult>
</GetAccountResponse>
</soap:Body>
</soap:Envelope>