LOAN IQ Technical - API XML call to retrieve Xquery function data

From GUILLARD WIKI
Revision as of 17:21, 23 May 2022 by Guillard (talk | contribs) (Created page with "Go to your <u>Loan Iq Xml Client</u> and execute : <syntaxhighlight lang="linux"> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE RunXQuery SYSTEM "RunXQuery.dtd"> <RunXQuery query="{GetYourFunctionHere('ABDEFG')}" version="1.0"/> </syntaxhighlight> Then, Go into your <u> LoanIQ Client with Scripting Editing Tool </u> and create file GetYourFunctionHere.xq : <syntaxhighlight lang="linux"> declare function GetYourFunctionHere($yourId){ <info> <data1> {/ReplaceByR...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Go to your Loan Iq Xml Client and execute :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE RunXQuery SYSTEM "RunXQuery.dtd">
<RunXQuery query="{GetYourFunctionHere('ABDEFG')}" version="1.0"/>

Then, Go into your LoanIQ Client with Scripting Editing Tool and create file GetYourFunctionHere.xq :

declare function GetYourFunctionHere($yourId){
<info>
   <data1> {/ReplaceByRelevantFunctionHere[LIQ.XQS.EQUAL(@ownerId,$yourId)]} </data1>
</info>
};