GetBatch
- Method
- Example Request
- Example Response
GetBatch(GetBatchRequest)
This operation will allow you to retrieve information about a specific batch.
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| GetBatchRequest | request |
Returns
| TYPE | DESCRIPTION |
|---|---|
| GetBatchResponse |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:pv="https://ssl.selectpayment.com/PV">
<soapenv:Header/>
<soapenv:Body>
<pv:GetBatch>
<pv:storeId>123456</pv:storeId>
<pv:storeKey>3z9em9oxqwX3acsaqc6H0ck8D3Yj</pv:storeKey>
<pv:entityId>12345</pv:entityId>
<pv:batchNumber>123</pv:batchNumber>
</pv:GetBatch>
</soapenv:Body>
</soapenv:Envelope>
<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>
<GetBatchResponse xmlns="https://ssl.selectpayment.com/PV">
<GetBatchResult>
<EntityId>12345</EntityId>
<BatchNumber>123</BatchNumber>
<BatchStatus>Open</BatchStatus>
<CreateDateTime>2010-12-30T10:31:04.1430000-06:00</CreateDateTime>
<ClosedDateTime>9999-12-31T23:59:59.9999999-06:00</ClosedDateTime>
<DebitCount>0</DebitCount>
<DebitAmount>0</DebitAmount>
<CreditCount>0</CreditCount>
<CreditAmount>0</CreditAmount>
<AuthorizedCount>0</AuthorizedCount>
<DeclinedCount>0</DeclinedCount>
<VoidCount>0</VoidCount>
<CreatedByUserId>0</CreatedByUserId>
<ClosedByUserId>123456</ClosedByUserId>
<AutoCloseDateTime>9999-12-31T23:59:59.9999999-06:00</AutoCloseDateTime>
</GetBatchResult>
</GetBatchResponse>
</soap:Body>
</soap:Envelope>