Skip to main content

Class CreateProcessingBatchRequest


Properties

NAMETYPELENGTHREQUIREDDESCRIPTION
storeIdlongYUnique user ID generated by EPS. (See - Required Data Elements)
storeKeystringYUnique password generated by EPS. (See - Required Data Elements)
entityIdintYUnique identifier that is generated by EPS. (See - Required Data Elements)
locationIdstringUnique identifier generated by EPS for each location. (See - Required Data Elements)

Exception: this instance of the element may be null or empty.
terminalNumberIfKnownstring20This element may be null or empty.
batchNumberToCreatestring40YUnique user assigned batch number for each batch created.
autoCloseDateTimeDateTimeY*This element controls when the batch is to be closed and is governed by the value in the element isAutoCloseDateTimeRequired below. See isAutoCloseDateTimeRequired below to determine whether this element needs to be included in the request. *This element is only required if isAutoCloseDateTimeRequired = 1.
isAutoCloseDateTimeRequiredboolValid values are: 0 (False) or 1 (True). When set to 1 a value must be entered into autoCloseDateTime above that will be used to set the data and time a batch will be closed and processed. When set to 0 or not included in the request, open batches will be closed at their normal processing time and autoCloseDateTime can be excluded from the request.
isSameDayACHboolPossible values are:
  • False (Default)
  • True

This element can be Null which defaults to False

Examples

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CreateProcessingBatch xmlns="https://ssl.selectpayment.com/PV">
<storeId>123456</storeId>
<storeKey>3z9em9oxqwX3acsaqc6H0ck8D3Yj</storeKey>
<entityId>12345</entityId>
<locationId>102030</locationId>
<terminalNumberIfKnown>__WebService</terminalNumberIfKnown>
<batchNumberToCreate>123</batchNumberToCreate>
<autoCloseDateTime>2010-11-26T19:00:00</autoCloseDateTime>
<isAutoCloseDateTimeRequired>0</isAutoCloseDateTimeRequired>
</CreateProcessingBatch>
</soap:Body>
</soap:Envelope>