Class GetBatchResponse
Properties
| NAME | TYPE | LENGTH | DESCRIPTION |
|---|---|---|---|
| EntityId | int | Unique identifier that is generated by EPS. | |
| BatchNumber | string | 40 | Unique identifier of the batch that was requested. |
| BatchStatus | enum of Type WSBatchStatus | Possible values are:
| |
| CreateDateTime | DateTime | The date and time the batch was created. | |
| ClosedDateTime | DateTime | The date and time the batch was closed. If not yet closed, a default value is returned. | |
| DebitCount | int | This element is not populated at this time. A value of 0 will be returned. | |
| DebitAmount | decimal | This element is not populated at this time. A value of 0 will be returned. | |
| CreditCount | int | This element is not populated at this time. A value of 0 will be returned. | |
| CreditAmount | decimal | This element is not populated at this time. A value of 0 will be returned. | |
| AuthorizedCount | int | This element is not populated at this time. A value of 0 will be returned. | |
| DeclinedCount | int | This element is not populated at this time. A value of 0 will be returned. | |
| VoidCount | int | This element is not populated at this time. A value of 0 will be returned. | |
| CreatedByUserId | long | The user name of the person that created the batch. | |
| ClosedByUserId | long | The user name of the person that closed the batch if the status is closed. If not closed a default value will be returned. | |
| AutoCloseDateTime | DateTime | The date and time the batch was closed if closed when the console was run. | |
| isSameDayACH | boolen | Possible values are:
|
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>