Class ValidateAccountRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| storeId | long | Y | Unique user ID generated by EPS. | |
| storeKey | string | Y | Unique password generated by EPS. | |
| entityId | int | Y | Unique identifier that is generated by EPS. | |
| locationId | int | Y | Unique identifier generated by EPS for each location. Possible values are:
| |
| accountNumber | string | 17 | Y | This element represents the customer’s account number. checking or savings accounts: 3-17 digits |
| routingNumber | int | 9 | Y | Bank Routing/Transit or ABA number. |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pv="https://ssl.selectpayment.com/PV">
<soapenv:Header>
<pv:SecurityHeader>
<pv:BinarySecurityToken>your security token here</pv:BinarySecurityToken>
</pv:SecurityHeader>
</soapenv:Header>
<soapenv:Body>
<pv:ValidateAccount>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:entityId>12345</pv:entityId>
<pv:locationId>10203</pv:locationId>
<pv:accountNumber>123445567</pv:accountNumber>
<pv:routingNumber>1112223333</pv:routingNumber>
</pv:ValidateAccount>
</soapenv:Body>
</soapenv:Envelope>