Update Loan Settings Custom Field Values

This request updates loan settings Custom Field values associated with a loan.

   Click here to learn more about this request

Custom Fields are customizable fields that can be created within an account to capture and track information that isn't stored natively within LoanPro. Each Custom Field is associated with a type of entity, such as Loan Settings, Customers, Payments, and more. Once Custom Fields are created, their associated values can be updated via this request:

  • The CustomFieldValues object holds custom field information, and it's nested within the LoanSettings entity.
  • This request updates only the value of the custom field—not the custom field itself. To update the settings of a custom field, 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:

{
    "LoanSettings": {
        "CustomFieldValues": {
            "results": [
                {
                    "customFieldId": 15,
                    "customFieldValue": "300"
                }
            ]
        },
        "__id": 9472,
        "__update": true
    }
}
Language
Authorization
Click Try It! to start a request and see the response here!