Details:
Point of Sale (POS) Applications have a need to bind Non-Borrower Owner Contacts in the File Contacts. This is so they can create a Loan Access Token (LAT). The LAT is used to negotiate authentication to the Borrower Portal Widget embedded on the POS’ website for a Borrower that has been authenticated on the POS’ Independent Provider (IdP).
Solution Details:
Steps:
- Open Encompass Smart Client
- Open a Loan
- Go to Tools
- Go to File Contacts
- Add a Non-Borrower File Contact–Ensure you add an email address and First and Last Name
- Save the Loan
- Copy the Loan Guid
- Open PostMan
- Get the Loan using {{API_SERVER}}/encompass/v3/loans/{{LoanID}}
- Search for the Entity collection “nonBorrowingOwners”:
- Copy the legacyId
- Execute {{API_SERVER}}/encompass/v0.9/tokens?bindingOnly=true
- Verb: POST
- Body:
- “contacts”:[
{
“uuid”: “urn:elli:encompass:BE##########:site:##########:user:AAAAAAAAAAA”,
“borrowerId”: “22440ebf-40bc-49fb-8fe3-081145b101ff”, //This is going to be the legacyId from the Get Loan Result
“contactType”: “NonBorrowingOwner”,
“email”: “john.crews@ice.com“, //Must have the correct email address
“name”: “First Last”, //Must have the correct First and Last name
“recipientId”: “e0d2e45f-417c-4713-89a1-f98c7a0ac93a”
}
],
“loanId”: “{{LoanGuid}}”
}
