Skip to main content

Class GetBatchResponse


Properties

NAMETYPELENGTHDESCRIPTION
EntityIdintUnique identifier that is generated by EPS.
BatchNumberstring40Unique identifier of the batch that was requested.
BatchStatusenum of Type WSBatchStatusPossible values are:
  • Open
  • Closing
  • Closed
  • Orphaned
CreateDateTimeDateTimeThe date and time the batch was created.
ClosedDateTimeDateTimeThe date and time the batch was closed. If not yet closed, a default value is returned.
DebitCountintThis element is not populated at this time. A value of 0 will be returned.
DebitAmountdecimalThis element is not populated at this time. A value of 0 will be returned.
CreditCountintThis element is not populated at this time. A value of 0 will be returned.
CreditAmountdecimalThis element is not populated at this time. A value of 0 will be returned.
AuthorizedCountintThis element is not populated at this time. A value of 0 will be returned.
DeclinedCountintThis element is not populated at this time. A value of 0 will be returned.
VoidCountintThis element is not populated at this time. A value of 0 will be returned.
CreatedByUserIdlongThe user name of the person that created the batch.
ClosedByUserIdlongThe user name of the person that closed the batch if the status is closed. If not closed a default value will be returned.
AutoCloseDateTimeDateTimeThe date and time the batch was closed if closed when the console was run.
isSameDayACHboolenPossible values are:
  • False (Default)
  • True

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>
<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>