Skip to main content

Class AuthorizeInstantPaymentsCreditSendResponse


Properties

NAMETYPELENGTHDESCRIPTION
ReferenceNumberstring20The reference number assigned to the transaction.
SuccessboolDid the transaction succeed?

Possible responses are: true or false
ErrorboolDid an error occur?

Possible responses are: true or false
ResponseCodeenum of Type AuthResponseCodePossible responses are:
  • Success
  • Duplicate_Transaction
  • Declined
  • Account_Invalid_Routing
  • Account_Invalid
  • Error_Internal
  • Error_Not_Supported
  • Error_Not_Subscribed
  • Error_Invalid_Terminal
  • Error_Terminal_Disabled
  • Error_Invalid_State
  • Error_Unspecified
ActualDateDateTimeThe date and time the transaction was created.
ResponseMessagestringThis field will provide supplemental information based on each response code listed above.
OriginatedAsenum of Type SettlementTypeTransaction type.

Possible responses are:
  • AuthorizeInstantPaymentsCreditSend

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>
<AuthorizeInstantPaymentsCreditSend>
<MethodParameters>
<WSResponseMessage>
<ReferenceNumber>T:1234567890</ReferenceNumber>
<Success>True</Success>
<Error>False</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>6/6/2025 4:41:24 PM</ActualDate>
<ResponseMessage isNull="false"/>
<OriginatedAs>Instant_Payments</OriginatedAs>
</WSResponseMessage>
</MethodParameters>
</AuthorizeInstantPaymentsCreditSend>
</soap:Body>
</soap:Envelope>