Sample Response Message
LeasePak Documentation Suite NETSOL website
getPortfolio

(mPower icon) LPLookup

getPortfolio

Sample Successful Response without SOAP
<?xml version="1.0"?>
<LPLOOKUP>
	<RESULT>
		<data>
			<portfolio> 2</portfolio>
			<bankFileMapType>ACH   </bankFileMapType>
		</data>
	</RESULT>
</LPLOOKUP>
Sample Error Response Without SOAP
<?xml version="1.0"?>
<LPLOOKUP>
	<INFO>No record found!</INFO>
</LPLOOKUP>
Sample Successful Response with SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<ns:getPortfolioResponse xmlns:ns="urn:LPLookup">
			<ns:return><![CDATA[<?xml version="1.0"?>
			<LPLOOKUP>
				<RESULT>
					<data>
						<portfolio> 2</portfolio>
						<bankFileMapType>ACH   </bankFileMapType>
					</data>
				</RESULT>
			</LPLOOKUP>
			]]></ns:return>
		</ns:getPortfolioResponse>
	</soapenv:Body>
</soapenv:Envelope>
Sample Error Response with SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<ns:getPortfolioResponse xmlns:ns="urn:LPLookup">
			<ns:return>
			<?xml version="1.0"?>
			<LPLOOKUP>
				<INFO>No record found!</INFO>
			</LPLOOKUP>			
			</ns:return>
		</ns:getPortfolioResponse>
	</soapenv:Body>
</soapenv:Envelope>