Skip to main content

Pass a Fee in the Request

Clients who want to add fees that already exist in their system can pass them in the pricing request using one of two methods:

1. Use the adjustments array

Populate the brokerCriteria.adjustments array with a fee:

"brokerCriteria": {
"adjustments": [
{
"referenceId": "{{reference ID of the adjustment}}",
"adj": 0.25,
"adjName": "Processing Fee",
...
}
]
}

You can also use criteria.adjustments to add fees as adjustments at the loan criteria level.

2. Use a closing cost template

Set up a fee template in the Lender Price UI, then enable it by setting closingCost.useClosingCost and closingCost.useCompanyDefaultClosingCost to true:

"closingCost": {
"useClosingCost": true,
"useCompanyDefaultClosingCost": true
}