EDocsService
Click here for a complete list of operations.
UploadPDFtoDocumentCapture
Uploads a PDF into the document capture system. [authTicket] Ticket returned by AuthService.asmx. [loanName] The MeridianLink Mortgage Loan Name. [applicationId] The ID of the application to associate with the document. [pdfContent] The base 64 encoded PDF document. [captureUsername] Optional. The username for the document capture system. [capturePassword] Optional. The password for the document capture system.
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/EDocsService.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/UploadPDFtoDocumentCapture" <?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> <UploadPDFtoDocumentCapture xmlns="http://www.lendersoffice.com/los/webservices/"> <authTicket>string</authTicket> <loanName>string</loanName> <applicationId>guid</applicationId> <pdfContent>string</pdfContent> <captureUsername>string</captureUsername> <capturePassword>string</capturePassword> </UploadPDFtoDocumentCapture> </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> <UploadPDFtoDocumentCaptureResponse xmlns="http://www.lendersoffice.com/los/webservices/"> <UploadPDFtoDocumentCaptureResult>string</UploadPDFtoDocumentCaptureResult> </UploadPDFtoDocumentCaptureResponse> </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/EDocsService.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> <UploadPDFtoDocumentCapture xmlns="http://www.lendersoffice.com/los/webservices/"> <authTicket>string</authTicket> <loanName>string</loanName> <applicationId>guid</applicationId> <pdfContent>string</pdfContent> <captureUsername>string</captureUsername> <capturePassword>string</capturePassword> </UploadPDFtoDocumentCapture> </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> <UploadPDFtoDocumentCaptureResponse xmlns="http://www.lendersoffice.com/los/webservices/"> <UploadPDFtoDocumentCaptureResult>string</UploadPDFtoDocumentCaptureResult> </UploadPDFtoDocumentCaptureResponse> </soap12:Body> </soap12:Envelope>