Sample Response Message
LeasePak Documentation Suite NETSOL website
enhancedPayment

(mPower icon) LPPayment

enhancedPayment

Sample Successful Response without SOAP
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
	<RESULT_RECORD>
		<TYPE>INFO</TYPE>
		<RECORD>PAYMENT</RECORD>
		<KEY>52</KEY>
		<FIELD>lease</FIELD>
		<MSGCODE>0</MSGCODE>
		<MSGTEXT>Successful.</MSGTEXT>
	</RESULT_RECORD>
</LP_RESPONSE_INFO>
Sample Error Response without SOAP
Error - Output when <cashRec> is blank.
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
	<RESULT_RECORD>
		<TYPE>ERROR</TYPE>
		<RECORD>PAYMENT</RECORD>
		<KEY>375</KEY>
		<FIELD>cashRec</FIELD>
		<MSGCODE>1037</MSGCODE>
		<MSGTEXT>Input Required.</MSGTEXT>
	</RESULT_RECORD>
</LP_RESPONSE_INFO>
Sample Successful Response with SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:enhancedPaymentResponse xmlns:ns="urn:LPPayment">
         <ns:return><![CDATA[<?xml version="1.0"?>
		 <LP_RESPONSE_INFO>
		   <RESULT_RECORD>
			  <TYPE>INFO</TYPE>
			  <RECORD>PAYMENT</RECORD>
			  <KEY>52</KEY>
			  <FIELD>lease</FIELD>
			  <MSGCODE>0</MSGCODE>
			  <MSGTEXT>Successful.</MSGTEXT>
		   </RESULT_RECORD>
		</LP_RESPONSE_INFO>
		]]></ns:return>
	</ns:enhancedPaymentResponse>
   </soapenv:Body>
</soapenv:Envelope>
Sample Error Response with SOAP
Error - Output when <cashRec> is blank.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:enhancedPaymentResponse xmlns:ns="urn:LPPayment">
         <ns:return><![CDATA[<?xml version="1.0"?>
		 <LP_RESPONSE_INFO>
		 <RESULT_RECORD>
		  <TYPE>ERROR</TYPE>
		  <RECORD>PAYMENT</RECORD>
		  <KEY>375</KEY>
		  <FIELD>cashRec</FIELD>
		  <MSGCODE>1037</MSGCODE>
		  <MSGTEXT>Input Required.</MSGTEXT>
		 </RESULT_RECORD>
		 </LP_RESPONSE_INFO>
		]]></ns:return>
	</ns:enhancedPaymentResponse>
   </soapenv:Body>
</soapenv:Envelope>