Class AuthorizeInstantPaymentsCreditSendResponse
Properties
| NAME | TYPE | LENGTH | DESCRIPTION |
|---|---|---|---|
| ReferenceNumber | string | 20 | The reference number assigned to the transaction. |
| Success | bool | Did the transaction succeed? Possible responses are: true or false | |
| Error | bool | Did an error occur? Possible responses are: true or false | |
| ResponseCode | enum of Type AuthResponseCode | Possible responses are:
| |
| ActualDate | DateTime | The date and time the transaction was created. | |
| ResponseMessage | string | This field will provide supplemental information based on each response code listed above. | |
| OriginatedAs | enum of Type SettlementType | Transaction type. Possible responses 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>
<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>