Loan
Click here for a complete list of operations.
Load
Query data from a loan file. [sTicket] Ticket returned by AuthService.asmx. [sLNm] The MeridianLink Mortgage Loan Name. [sXmlQuery] The Xml defines the list of fields to be included in the response. Refer to lo_xmlquery_blank.xml for an example. [format] Identifies the output format to use. 0 - LO XML Query. 3 - Calyx Point (This is returned as an encoded base-64 Xml encased string. This is because the Calyx Point file is a binary file.) 4 - Fannie Mae 3.2. 9 - MISMO 2.6, 10 - MISMO 3.3, 12 - MISMO 3.4 Vanilla, 13 - MISMO 3.4 LPA, 14 - MISMO 3.4 DU, 15 - MISMO 3.4 Combined
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /los/webservice/Loan.asmx HTTP/1.1 Host: webservices.lendingqb.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.lendersoffice.com/los/webservices/Load" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Load xmlns="http://www.lendersoffice.com/los/webservices/"> <sTicket>string</sTicket> <sLNm>string</sLNm> <sXmlQuery>string</sXmlQuery> <format>int</format> </Load> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LoadResponse xmlns="http://www.lendersoffice.com/los/webservices/"> <LoadResult>string</LoadResult> </LoadResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /los/webservice/Loan.asmx HTTP/1.1 Host: webservices.lendingqb.com Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <Load xmlns="http://www.lendersoffice.com/los/webservices/"> <sTicket>string</sTicket> <sLNm>string</sLNm> <sXmlQuery>string</sXmlQuery> <format>int</format> </Load> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <LoadResponse xmlns="http://www.lendersoffice.com/los/webservices/"> <LoadResult>string</LoadResult> </LoadResponse> </soap12:Body> </soap12:Envelope>