LPLessee
update
Sample Successful Response without SOAP
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>INFO</TYPE>
<RECORD>LESSEE</RECORD>
<KEY>28</KEY>
<FIELD>clientNumber</FIELD>
<MSGCODE>0</MSGCODE>
<MSGTEXT>Successful.</MSGTEXT>
</RESULT_RECORD>
</LP_RESPONSE_INFO>
Sample Successful Response with SOAP
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:updateResponse xmlns:ns="urn:LPLessee">
<ns:return><![CDATA[<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>INFO</TYPE>
<RECORD>LESSEE</RECORD>
<KEY>28</KEY>
<FIELD>clientNumber</FIELD>
<MSGCODE>0</MSGCODE>
<MSGTEXT>Successful.</MSGTEXT>
</RESULT_RECORD>
</LP_RESPONSE_INFO>
]]></ns:return>
</ns:updateResponse>
</soapenv:Body>
</soapenv:Envelope>
Sample Response Message with SOAP (error output)
Example: When lessee is reported to credit bureau and requires a social security number.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:updateResponse xmlns:ns="urn:LPLessee">
<ns:return><![CDATA[<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>ERROR</TYPE>
<RECORD>LESSEE</RECORD>
<KEY>999</KEY>
<FIELD>ssnBusinessID</FIELD>
<MSGCODE>1489</MSGCODE>
<MSGTEXT>Lessee is being reported to the credit bureaus and requires a Social Security Number.</MSGTEXT>
</RESULT_RECORD>
</LP_RESPONSE_INFO>
]]></ns:return>
</ns:updateResponse>
</soapenv:Body>
</soapenv:Envelope>