Class UpdateAutoCloseDateTimeRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| storeId | long | Y | Unique user ID generated by EPS. (See - Required Data Elements) | |
| storeKey | string | Y | Unique password generated by EPS. (See - Required Data Elements) | |
| entityId | int | Y | Unique identifier that is generated by EPS. (See - Required Data Elements) | |
| batchNumber | string | 40 | Y | Unique user assigned identifier of the batch whose close date time is to be updated. |
| autoCloseDateTime | DateTime | Y | This element is used to set the time (if used) when a batch should be closed and processed. |
<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:UpdateAutoCloseDateTime>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:batchNumber>123</pv:batchNumber>
<pv:autoCloseDateTime>Date</pv:autoCloseDateTime>
</pv:UpdateAutoCloseDateTime>
</soapenv:Body>
</soapenv:Envelope>