Sample Request Message
LeasePak Documentation Suite NETSOL website
update

(mPower icon) LPVendor

update

Sample Request Message without SOAP
<?xml version="1.0"?>
<VENDOR_INFO>
	<VENDOR_RECORD>
		<shortname>RELIABLE BUSINESS EQUIP</shortname>
		<dcxChecksum>ee597d3c45c81c3aa60535617fa0ef3d</dcxChecksum>
		<clientRelChecksum>8d74198f8ae011b9d6bb9d356fe68211</clientRelChecksum>
		<portfolio>2</portfolio>
		<company>1</company>
		<region>1</region>
		<office>1</office>
		<clientNumber>3</clientNumber>
		<name>RELIABLE BUSINESS EQUIPMENT CORP.</name>
		<address1>708 CARDLEY AVE.</address1>
		<city>SAN MATEO</city>
		<state>CA</state>
		<county>SAN MATEO</county>
		<fundingTaxCode>NOUT</fundingTaxCode>
		<zipCode>94035</zipCode>
		<busPhone>4153480566</busPhone>
		<papAchType>CCD</papAchType>
		<letterVersionCode>ENGL</letterVersionCode>
		<vendorParticipationCode>1</vendorParticipationCode>
		<activityStatus>ACTV</activityStatus>
		<recourseType>NONE</recourseType>
		<vendorType>EQP</vendorType>
		<prenoteSent>Y</prenoteSent>
		<alertSwitch1>N</alertSwitch1>
		<alertSwitch2>N</alertSwitch2>
		<alertSwitch3>N</alertSwitch3>
		<alertSwitch4>N</alertSwitch4>
		<alertSwitch5>N</alertSwitch5>
		<alertSwitch6>N</alertSwitch6>
		<datePrenoteSentOn>030589</datePrenoteSentOn>
		<dateVendorAgreement>010189</dateVendorAgreement>
	</VENDOR_RECORD>
</VENDOR_INFO>
Sample Request Message with SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPVendor">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:update>
			<!--Optional:-->
			<urn:input><![CDATA[<?xml version="1.0"?>
			<VENDOR_INFO>
				<VENDOR_RECORD>
					<shortname>RELIABLE BUSINESS EQUIP</shortname>
					<dcxChecksum>ee597d3c45c81c3aa60535617fa0ef3d</dcxChecksum>
					<clientRelChecksum>8d74198f8ae011b9d6bb9d356fe68211</clientRelChecksum>
					<portfolio>2</portfolio>
					<company>1</company>
					<region>1</region>
					<office>1</office>
					<clientNumber>3</clientNumber>
					<name>RELIABLE BUSINESS EQUIPMENT CORP.</name>
					<address1>708 CARDLEY AVE.</address1>
					<city>SAN MATEO</city>
					<state>CA</state>
					<county>SAN MATEO</county>
					<fundingTaxCode>NOUT</fundingTaxCode>
					<zipCode>94035</zipCode>
					<busPhone>4153480566</busPhone>
					<papAchType>CCD</papAchType>
					<letterVersionCode>ENGL</letterVersionCode>
					<vendorParticipationCode>1</vendorParticipationCode>
					<activityStatus>ACTV</activityStatus>
					<recourseType>NONE</recourseType>
					<vendorType>EQP</vendorType>
					<prenoteSent>Y</prenoteSent>
					<alertSwitch1>N</alertSwitch1>
					<alertSwitch2>N</alertSwitch2>
					<alertSwitch3>N</alertSwitch3>
					<alertSwitch4>N</alertSwitch4>
					<alertSwitch5>N</alertSwitch5>
					<alertSwitch6>N</alertSwitch6>
					<datePrenoteSentOn>030589</datePrenoteSentOn>
					<dateVendorAgreement>010189</dateVendorAgreement>
				</VENDOR_RECORD>
			</VENDOR_INFO>
         ]]></urn:input>
		</urn:update>
	</soapenv:Body>
</soapenv:Envelope>
Sample Request Message with SOAP (invalid input)

Example: Without company field value.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPVendor">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:update>
			<!--Optional:-->
			<urn:input><![CDATA[<?xml version="1.0"?>
				<VENDOR_INFO>
					<VENDOR_RECORD>
						<shortname>RELIABLE BUSINESS EQUIP</shortname>
						<dcxChecksum>ec60e3bc8958817fdfae17eadc59f007</dcxChecksum>
						<clientRelChecksum>7335958b8dbdc7ff31ac42c4365a5752</clientRelChecksum>
						<portfolio>2</portfolio>
						<clientNumber>1</clientNumber>
						<name>RELIABLE BUSINESS EQUIPMENT CORP.</name>
						<address1>708 CARDLEY AVE.</address1>
						<city>SAN MATEO</city>
						<state>CA</state>
						<zipCode>94035</zipCode>
						<busPhone>4153480566</busPhone>
						<papAchType>CCD</papAchType>
						<letterVersionCode>ENGL</letterVersionCode>
						<vendorParticipationCode>1</vendorParticipationCode>
						<activityStatus>ACTV</activityStatus>
						<recourseType>NONE</recourseType>
						<vendorType>EQP</vendorType>
						<prenoteSent>Y</prenoteSent>
						<alertSwitch1>N</alertSwitch1>
						<alertSwitch2>N</alertSwitch2>
						<alertSwitch3>N</alertSwitch3>
						<alertSwitch4>N</alertSwitch4>
						<alertSwitch5>N</alertSwitch5>
						<alertSwitch6>N</alertSwitch6>
						<datePrenoteSentOn>030589</datePrenoteSentOn>
						<dateVendorAgreement>010189</dateVendorAgreement>
					</VENDOR_RECORD>
				</VENDOR_INFO>
            ]]></urn:input>
		</urn:update>
	</soapenv:Body>
</soapenv:Envelope>