Access User and Loan Context from TPO Application
Access User and Loan Context from TPO Application
The TPO Application Object exposes a few methods that can be utilized for accessing User and Loan data.
// get loan summary object from TPO
tpoAppObject.getLoanSummary().then(function(loanSummary) {
console.log('Loan Summar ===', loanSummary);
})
Note: A detailed list of methods is explained later in this guide.
Updated 9 months ago