Add Escrow Transaction

This request allows you to add an escrow transaction to a loan.

General

Escrow transactions allow you to record, deposit, and withdraw transactions for your Escrow Buckets within LoanPro. Here's what you need to know about this request:

  • The EscrowTransactions object is nested within the Loans entity, and it holds transaction history.
  • Escrow Calculators use Escrow Buckets. You will need to create one before adding a calculator, but you can do so via the API

For an example of how escrow transactions work within the UI, take a look at our Create a New Escrow Transaction article on our help site.

Database

For information on escrow transaction database tables, see the following articles:

{
  "EscrowTransactions": {
    "results": [
      {
        "date": "2022-11-24",
        "amount": "100.00",
        "type": "transaction.type.withdrawal",
        "category": 7,
        "description": "Standard Escrow Fee",
        "subset": 2
      }
    ]
  }
}
{
  "EscrowTransactions": {
    "results": [
      {
        "subset": 2,
        "category": 7,
        "description": "Testing",
        "date": "2022-11-24",
        "type": "transaction.type.withdrawal",
        "amount": "250.00",
        "__id": 31,
        "__update": true
      }
    ]
  }
}
{
  "EscrowTransactions": {
    "results": [
      {
        "__id": 31,
        "__destroy": true
      }
    ]
  }
}

📘

Try It Instructions

Our requests often provide sample payload information so that you can receive a 200 response from simply hitting the Try It button. This request is ready for you—expand the object by clicking the "+" symbol and hit Try It to send the request.

If you would like to try this request with your own tenant account, make sure to change the headers to match your own authentication information.

Language
Authorization
Click Try It! to start a request and see the response here!