We want to update the value of a custom field in a particular loan contract.
The field ID and the value you want to update for the field.
The entity name and the contract number for which you want to update the custom value.
To update the custom field value, use the following endpoint:
The sample request body is as follows:
Below you will find the response to the sample request:
We have now updated the value of the custom field fieldValue
for the loan contract:
From the previous value 5000,
To the new value 4500.
https://loan-api.sandbox.tuumplatform.com/api/v1/custom-fields/value
Learn more about the endpoint in the Tuum developer portal.
In this section, we will learn how to update custom fields for the Loan API entities.
under the loan contract header entity.
of a field set.
of a custom field.
We want to update the name of an existing field set in the loan contract header entity.
The first path parameter is the entity name (in this case, LOAN.CONTRACT_HEADER).
The second path parameter is the field set ID whose name you want to update.
In the body, we will enter the new field name.
To update the field set name, use the following endpoint:
The sample request body is as follows:
Below you will find the response to the sample request:
We have now updated the field set name:
From the previous name "Contracts",
To the new name "Extra details for contract headers".
https://loan-api.sandbox.tuumplatform.com/api/v1/custom-fields/LOAN.CONTRACT_HEADER/field-set/Contract%20Extras
Learn more about the endpoint in the Tuum developer portal.
We will update an existing field in the loan header contract entity. In this case, we will mark the field as required.
The first path parameter is the entity name (in this case, LOAN.CONTRACT_HEADER).
The second path parameter is the field ID that you want to update.
In the body, we will enter the required parameters with the updated values.
To update the field, use the following endpoint:
The sample request body is as follows:
Below you will find the response to the sample request:
We have now updated the field Residual Value
as a required field.
https://loan-api.sandbox.tuumplatform.com/api/v1/custom-fields/LOAN.CONTRACT_HEADER/field/ResVal
Learn more about the endpoint in the Tuum developer portal.