Sample Request Message
LeasePak Documentation Suite NETSOL website
add

(mPower icon) LPInvestor

add

Sample Successful Request Message Without SOAP
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
	<INVESTOR_INFO>
		<INVESTOR_RECORD>
			<shortname>HILTI INC</shortname>
			<ssnBusinessID>123456789           </ssnBusinessID>
			<portfolio>2</portfolio>
			<company>1</company>
			<region>1</region>
			<office>1</office>
			<clientNumber>20</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 Successfull Request Message With SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPInvestor">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:add>
			<urn:input><![CDATA[<?xml version="1.0"?>
				<LP_RESPONSE_INFO>
					<INVESTOR_INFO>
						<INVESTOR_RECORD>
							<shortname>HILTI INC</shortname>
							<ssnBusinessID>123456789           </ssnBusinessID>
							<portfolio>2</portfolio>
							<company>1</company>
							<region>1</region>
							<office>1</office>
							<clientNumber>20</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>
			]]></urn:input>
		</urn:add>
	</soapenv:Body>
</soapenv:Envelope>
Sample Request Message with SOAP (invalid input)

Example: Invalid portfolio.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPInvestor">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:add>
			<urn:input><![CDATA[<?xml version="1.0"?>
				<LP_RESPONSE_INFO>
					<INVESTOR_INFO>
						<INVESTOR_RECORD>
							<shortname>HILTI INC</shortname>
							<ssnBusinessID>123456789           </ssnBusinessID>
							<portfolio>5</portfolio>
							<company>1</company>
							<region>1</region>
							<office>1</office>
							<clientNumber>20</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>
			]]></urn:input>
		</urn:add>
	</soapenv:Body>
</soapenv:Envelope>