Skip to main content

Class InstantPaymentsCreditSendResponse


Properties

NAMETYPELENGTHDESCRIPTION
ReferenceNumberstring20Reference number assigned to the transaction.
SuccessboolPossible responses are:
  • true – the transaction was approved.
  • false – there was a problem with the transaction.
ErrorboolPossible responses are:
  • true – there was a problem with the transaction.
  • false – the transaction was approved.
ResponseCodeenum of Type AuthResponseCodePossible responses are:
  • Success
  • Duplicate_Transaction
  • Declined
  • Account_Invalid_Routing
  • Account_Invalid
  • Error_Internal
  • Error_Not_Supported
  • Error_Not_Subscribed (ex. No processor settings)
  • Error_Invalid_Terminal
  • Error_Terminal_Disabled
  • Error_Invalid_State
  • Error_Unspecified
ActualDateDateTime
ResponseMessagestringThis field will provide supplemental information based on each response code listed above.
OriginatedAsenum of Type SettlementTypePossible responses are:
  • Instant_Payments

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>
<InstantPaymentsCreditSendResponse xmlns="https://ssl.selectpayment.com/PV">
<InstantPaymentsCreditSendResult>
<ReferenceNumber>T:06N6Y1R7A2L</ReferenceNumber>
<Success>true</Success>
<Error>false</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>2010-12-30T00:00:00.0000000-06:00</ActualDate>
<ResponseMessage/>
<OriginatedAs>Instant_Payments</OriginatedAs>
</InstantPaymentsCreditSendResult>
</InstantPaymentsCreditSendResponse>
</soap:Body>
</soap:Envelope>