Class HoldAllCreditsRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| RequestId | int | Value provided by the user to identify the request. The element can be blank or null. | ||
| RequestDate | datetime | Date the request is being made. The element cannot be blank but can be null. | ||
| Credentials | Credentials | Holds Credentials SmartPayManager Web Service. |
Credentials
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| StoreId | long | Y | Unique user ID generated by EPS. | |
| StoreKey | string | Y | Unique password generated by EPS. | |
| EntityId | int | Y | Unique identifier that is generated by EPS to identify the Owning Entity. |
Examples
<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:GetHoldAllCredits>
<pv:Credentials>
<pv:EntityId>123456</pv:EntityId>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
</pv:Credentials>
<pv:RequestDate>8/8/2025 4:08:00 PM</pv:RequestDate>
<pv:RequestId isNull="false" />
</pv:GetHoldAllCredits>
</soapenv:Body>
</soapenv:Envelope>