MERIDIANLINK MORTGAGE INTERNAL USE ONLY.
Process a batch export immediately, without queuing.
sTicket - Ticket returned by AuthService.asmx.
sCustomReportName - The name of the LendingQB custom report to use to determine which loans to include in the batch export. Data contents of the export will be determined by the batch export format.
sBatchExportType - The type of batch export to run. The type is included in the corresponding link within the Batch Export Report Formats list in LendingQB.
Example - Batch export format: NC Call Report; sBatchExportType: NCCallReport
sKey - An application key that must be input to run this function.
An LOXML formatted string. The result includes a status attribute [ERROR | COMPLETE]. ERROR responses include an error message. COMPLETE responses include the output file contents in base64-encoded format. The contents element also includes an outputtype attribute to indicate the actual file type (XML | CSV | XLSX | TXT).
If the batch export is successfully processed then the following is the response format:
<LOXmlFormat version="1.0">
<result status="COMPLETE">
<batchExportID>AGO-ER3C-M74X
</batchExportID>
<message>Batch export finished.
</message>
<contents outputtype="CSV"
encoding="base64">
{Batch export file contents}
</contents>
</result>
</LOXmlFormat>
If an error occurs then the following is the response format:
<LOXmlFormat version="1.0">
<result status="ERROR">
<message>{ERROR MESSAGE HERE}</message>
</result>
</LOXmlFormat>