SymXchange API

Make Cash Received Loan Payment

Transaction Examples > Make Cash Received Loan Payment

Use this request to make a cash-received loan payment.

  • Target WSDL: TransactionsService
  • Operation: payLoan
  • Available Credential Types: AccountNumber, HomeBanking, Card, MICR, Lookup, UserNumber, Administrative

For cash transactions, when you do not specify the cash amount, the system defaults the transaction as a check transaction.

XML Request

<soapenv:Envelope xmlns:soapenv=
"http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tran="http://www.symxchange.generated.symitar.com/v1/transactions"
xmlns:com="http://www.symxchange.generated.symitar.com/v1/common/dto/common"
xmlns:dto="http://www.symxchange.generated.symitar.com/v1/transactions/dto">
   <soapenv:Header/>
      <soapenv:Body>
         <tran:payLoan>
            <Request MessageId="payLoan">
               <Credentials>
                  <UserNumberCredentials>
                     <UserNumber>101</UserNumber>
                     <Password>123USER</Password>
                  </UserNumberCredentials>
               </Credentials>
            <DeviceInformation DeviceType="CLIENTSYSTEM" DeviceNumber="20000"/>
            <dto:RecipientAccountNumber>5000</dto:RecipientAccountNumber>
            <dto:RecipientId>20</dto:RecipientId>
            <PaymentAmounts>
               <dto:TotalAmount>616.89</dto:TotalAmount>
            </PaymentAmounts>
            <dto:Comment>Cash recv’d loan payment </dto:Comment>
         </Request>
      </tran:payLoan>
   </soapenv:Body>
</soapenv:Envelope>

Required elements in the request include the following tags:

  • dto:RecipientAccountNumber
  • dto:RecipientId
  • PaymentAmounts
  • dto:TotalAmount

XML Response

<soap:Envelope xmlns:soap=
"http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns4:payLoanResponse xmlns:ns4="http://www.symxchange.generated.symitar.com/v1/transactions"
      xmlns:ns3=http://www.symxchange.generated.symitar.com/v1/transactions/dto
      xmlns:ns2="http://www.symxchange.generated.symitar.com/v1/common/dto/common">
          <Response Confirmation="01010000005515" SequenceTo="22967" TransactionPostDate="2016-12-
          15" MessageId="payLoan" StatusCode="0">
            <ns3:OverdrawInformation>
               <OverdrawToleranceAmount>0.00</OverdrawToleranceAmount>
            </ns3:OverdrawInformation>
         </Response>
      </ns4:payLoanResponse>
   </soap:Body>
</soap:Envelope>
Last updated Fri Mar 3 2023