Create a TPO portal using Encompass API

Steps to create a TPO portal using Encompass API:- Get Encompass API credentials: To use the Encompass API, you need API credentials, including a Client ID and a Client Secret. You can get these credentials by registering an API application with Ellie Mae. Choose a programming language: The Encompass API supports several programming languages, including …

Using encompass API to batch update lender name

So, here are sample codes using Encompass API to batch update lender name using EllieMae.Encompass.Api; using EllieMae.Encompass.BusinessObjects.Loans; // Authenticate with Encompass API Session session = new Session(); session.Start(“encompass_api_user”, “encompass_api_password”); // Define loan filter criteria for batch update LoanFilter loanFilter = new LoanFilter(); loanFilter.AddFilter(LoanField.LoanFolder, “MyFolder”); loanFilter.AddFilter(LoanField.LoanStatus, LoanStatus.Active); // Retrieve loans matching the filter criteria LoanData[] loans …

How to send email in encompass using codes

Here’s an example code in Python that demonstrates how to send an email using the Encompass API: This is in ‘python’ import requests import json url = ‘https://api.elliemae.com/encompass/v1/borrowers/{}/email’ access_token = ‘YOUR_ACCESS_TOKEN’ borrower_id = ‘BORROWER_ID’ headers = { ‘Authorization’: f’Bearer {access_token}’, ‘Content-Type’: ‘application/json’ } data = { ‘subject’: ‘Hello from Encompass’, ‘body’: ‘This is a test …

Encompass developer connect – Postman – Get a loan

So, here is a C# code to get a loan in Encompass developer connect, I already explained how to get developer connect, install postman etc and how to start. Please go through previous post for more info or ask me. var client = new RestClient(“https://api.elliemae.com/encompass/v1/loans/{32charactersguidwith4dashes}”); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader(“Authorization”, “Bearer …

Developer connect Postman and first API call

You really have to start requesting developer connect account to clientsuccess questions email, if your administrator has not started and got developer account yet. They need to sign agreement through Adobe Echosign etc which will cost nothing but only a competent person from your Encompass admin can sign. Then Developer connect will be provisioned. Once …

HELOC features

Working with HELOC features Your operations team and company decision makers determine your company’s HELOC policy:  Review the HELOC programs offered by you or your investors.  Set a credit policy regarding draw, repay, and types of HELOC loans to offer.  Review the HELOC Management Input Form section and HELOC Configuration Worksheet later …