Sample Request Message
LeasePak Documentation Suite NETSOL website
waiveAssessment

(mPower icon) LPAssessment

waiveAssessment

Sample Request Message

The following input shows how to waive assessment charges froma a lease.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPAssessment">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:waiveAssessment>
			<urn:lease>1</urn:lease>
			<urn:asset></urn:asset>
			<urn:invoice>181</urn:invoice>
			<urn:assmt>RCR1</urn:assmt>
			<urn:amount>100</urn:amount>
		</urn:waiveAssessment>
	</soapenv:Body>
</soapenv:Envelope>
Example:

Following is a simple example that shows how to waive an assessment by providing assessment code for an invoice number and amount to waive.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:LPAssessment">
	<soapenv:Header/>
	<soapenv:Body>
		<urn:waiveAssessment>
			<urn:lease></urn:lease>
			<urn:asset></urn:asset>
			<urn:invoice>135</urn:invoice>
			<urn:assmt>COLL</urn:assmt>
			<urn:amount>10</urn:amount>
		</urn:waiveAssessment>
	</soapenv:Body>
</soapenv:Envelope>