put https://loanpro.simnang.com/api/public/api/1/odata.svc/Loans()
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 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, 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
}
}