This request updates a Loan Settings Custom Field value.
General
Custom Fields are used by lenders to track information that applies to their business but isn't native to LoanPro. Here's what you need to know about this request:
- The
CustomFieldValues
object holds custom field information, and it's nested within theLoanSettings
entity. - This request updates only the value of the custom field—not the custom field itself. To update the settings of a custom field, you will need to send an Edit Custom Field request.
- Updating a Loan Settings Custom Field value requires the ID of the Loan Settings configuration and the ID of the Custom Field.
For an example of how custom fields work within the UI, take a look at our Using Custom Fields article.
Database
For information regarding customer and custom field database tables, see the following articles:
- Database – Custom Field Entity (custom_field)
- Database – Custom Field to Entity Map (custom_field__entity)
- Database – Loan Table (loan_entity)
{
"LoanSettings": {
"CustomFieldValues": {
"results": [
{
"customFieldId": 15,
"customFieldValue": "300"
}
]
},
"__id": 9472,
"__update": true
}
}
Try It Instructions
Our pages often provide sample payload information so that you can try requests yourself. This request is ready for you—expand the object by clicking the "+" symbol and hit the Try It button 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.