// Calling LCI directly from a QBO website with an ad-hoc user
Contact/Contact.ashx/
LCIBKSearchRead?
FirstName=
John
&
LastName=Doe&USSSN=123456789&Address=123 Main Street&
City=Anywhere&State=Ca&PostalCode=90210&
Output=Xml
// Calling LCI directly from a QBO website with an existing QBO contact
Contact/Contact.ashx/
LCIBKSearchRead?ID={ContactID}
&Output=Xml
// Calling LCI directly, but wrap it in a custom QBO UI
Theme.ashx/Wrap?ClassName=Contact&Method=LCIBKSearchRead&ID={ContactID}&Transform=Templates/Service/Bankruptcy/Bankruptcy.LCISelect.xslt
// Calling LCI directly, transforming the results into QBO import-framework-ready XML
Contact/Contact.ashx/
LCIBKSearchRead?ID={ContactID}
&Output=Xml
&Transform=Templates/Service/
Bankruptcy/LCI.
BankruptcySearch.XmlResponse.
Import.xslt
// Okay those are some decent examples. Now let's really USE it.
// Search an actual borrower, and persist the Bankruptcy record to QBO
Contact/Contact.ashx/LCIBKSearch?ID={ContactID}&ParentObject=Loan&ParentObjectID={LoanID}
// Do the same thing, but don't make the user wait around for results
Contact/Contact.ashx/Queue/LCIBKSearch?ID={ContactID}&ParentObject=Loan&ParentObjectID={LoanID}
// Let's schedule this search every month
Contact/Contact.ashx/Schedule/LCIBKSearch?ID={ContactID}&ParentObject=Loan&ParentObjectID={LoanID}&Schedule=Monthly on the 1st at 3:00am
// Let's schedule a monthly sweep of all our contacts that don't have an existing BK
Contact/Contact.ashx/Schedule/BatchQueue?Filter=NoActiveBK&Operation=LCIBKSearch&Schedule=Monthly on the 1st at 3:00amasdf