Sample Response Message
LeasePak Documentation Suite NETSOL website
retrieve

(mPower icon) LPInvestor

retrieve

Sample Successful Response Message Without SOAP
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
	<INVESTOR_INFO>
		<INVESTOR_RECORD>
			<shortname>HILTI INC</shortname>
			<dcxChecksum>71461f2dbdc67cc5e5f84a04e48dbccb</dcxChecksum>
			<ssnBusinessID>123456789           </ssnBusinessID>
			<clientRelChecksum>ff60542a91f09132c5fb92cab7b18d99</clientRelChecksum>
			<portfolio>2</portfolio>
			<company>1</company>
			<region>1</region>
			<office>1</office>
			<clientNumber>15</clientNumber>
			<emailAddress>[email protected]</emailAddress>
			<name>HILTI INC</name>
			<address1>27 BARNEBURG RD</address1>
			<address2>27 BARNEBURG RD</address2>
			<city>WITCHITA</city>
			<state>KS</state>
			<zipCode>56733</zipCode>
			<busPhone>1234567898</busPhone>
			<contactTitle>Mr</contactTitle>
			<contactName>Alaxender</contactName>
			<letterVersionCode>ENGL</letterVersionCode>
			<activityStatus>ACTV</activityStatus>
		</INVESTOR_RECORD>
	</INVESTOR_INFO>
</LP_RESPONSE_INFO>
Sample Successful Response Message With SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<ns:retrieveResponse xmlns:ns="urn:LPInvestor">
			<ns:return><![CDATA[<?xml version="1.0"?>
				<LP_RESPONSE_INFO>
					<INVESTOR_INFO>
						<INVESTOR_RECORD>
							<shortname>HILTI INC</shortname>
							<dcxChecksum>71461f2dbdc67cc5e5f84a04e48dbccb</dcxChecksum>
							<ssnBusinessID>123456789           </ssnBusinessID>
							<clientRelChecksum>ff60542a91f09132c5fb92cab7b18d99</clientRelChecksum>
							<portfolio>2</portfolio>
							<company>1</company>
							<region>1</region>
							<office>1</office>
							<clientNumber>15</clientNumber>
							<emailAddress>[email protected]</emailAddress>
							<name>HILTI INC</name>
							<address1>27 BARNEBURG RD</address1>
							<address2>27 BARNEBURG RD</address2>
							<city>WITCHITA</city>
							<state>KS</state>
							<zipCode>56733</zipCode>
							<busPhone>1234567898</busPhone>
							<contactTitle>Mr</contactTitle>
							<contactName>Alaxender</contactName>
							<letterVersionCode>ENGL</letterVersionCode>
							<activityStatus>ACTV</activityStatus>
						</INVESTOR_RECORD>
					</INVESTOR_INFO>
				</LP_RESPONSE_INFO>
			]]></ns:return>
		</ns:retrieveResponse>
	</soapenv:Body>
</soapenv:Envelope>
Sample Response Message With SOAP (error output)
Example: Response when investor record does not exist.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<ns:retrieveResponse xmlns:ns="urn:LPInvestor">
			<ns:return><![CDATA[<?xml version="1.0"?>
				<LP_RESPONSE_INFO>
					<RESULT_RECORD>
						<TYPE>ERROR</TYPE>
						<RECORD>INVESTOR</RECORD>
						<KEY>14</KEY>
						<FIELD>clientNumber</FIELD>
						<MSGCODE>7047</MSGCODE>
						<MSGTEXT>Investor does not exist.</MSGTEXT>
					</RESULT_RECORD>
				</LP_RESPONSE_INFO>
            ]]></ns:return>
		</ns:retrieveResponse>
	</soapenv:Body>
</soapenv:Envelope>