Class GetAccountsResponse
Properties
| NAME | TYPE | LENGTH | DESCRIPTION |
|---|---|---|---|
| CustomerNumber | string | 50 | Unique identifier of the registered customer. |
| AccountType | enum of Type WSAccountType | Possible responses are:
| |
| NameOnAccount | string | 50 | Customer’s name as it appears on their account. |
| AccountName | string | 50 | Customer’s name or an account nickname. |
| AccountNumber | string | 17 | Only the last 4 digits are displayed. |
| RoutingNumber | int | 9 | The request will return zeroes if this is a credit card account. |
| ExpirationMonth | Byte | 2 | For credit card accounts only. The request will return a zero (0) if this is a checking or savings account. |
| ExpirationYear | Byte | 2 | For credit card accounts only. The request will return a zero (0) if this is a checking or savings account. |
| BillAddress1 | string | 50 | Customer’s address, if available. |
| BillAddress2 | string | 50 | Customer’s additional address info, if available. |
| BillCity | string | 40 | City where the customer resides. |
| BillStateRegion | string | 40 | State in which the customer resides. |
| BillPostalCode | string | 10 | Zip code where the customer resides. |
| BillCountry | string | 40 | Country in which the customer resides. |
| Approved | bool | No longer used. | |
| UsedForMatching | bool | No longer used. | |
| AccountReferenceID | string | 50 | Unique 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>