LPBroker
delete
Sample Successful Response Without SOAP
<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>INFO</TYPE>
<RECORD>BROKER</RECORD>
<KEY>44</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:deleteResponse xmlns:ns="urn:LPBroker">
<ns:return><![CDATA[<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>INFO</TYPE>
<RECORD>BROKER</RECORD>
<KEY>44</KEY>
<FIELD>clientNumber</FIELD>
<MSGCODE>0</MSGCODE>
<MSGTEXT>Successful.</MSGTEXT>
</RESULT_RECORD>
</LP_RESPONSE_INFO>
]]></ns:return>
</ns:deleteResponse>
</soapenv:Body>
</soapenv:Envelope>
Sample Response Message with SOAP (error response)
Example: Invalid clientRelChecksum
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:deleteResponse xmlns:ns="urn:LPBroker">
<ns:return><![CDATA[<?xml version="1.0"?>
<LP_RESPONSE_INFO>
<RESULT_RECORD>
<TYPE>ERROR</TYPE>
<RECORD>BROKER</RECORD>
<KEY>46</KEY>
<FIELD>clientNumber</FIELD>
<MSGCODE>7005</MSGCODE>
<MSGTEXT>The update has been cancelled because the record was modified by another user. Please re-enter your update.</MSGTEXT>
</RESULT_RECORD>
</LP_RESPONSE_INFO>
]]></ns:return>
</ns:deleteResponse>
</soapenv:Body>
</soapenv:Envelope>