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 theLoans
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:
- Database – Escrow Transaction (escrow_transaction_entity)
- Database – Escrow Transaction Category (escrow_tx_category_entity)
- Database – Escrow Transaction Metadata (escrow__transactions)
{
"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.