put https://cloud.digifi.io/v2/los/api/applications/[id]/coborrowers
How to update an application's co-borrower(s) using the DigiFi API.
The Update Application Co-Borrowers API can be used to add or remove co-borrower(s) from an application.
Example Requests
Below please find the JSON body for four example requests:
- Example 1: Removing a co-borrower from an application.
- Example 2: Adding an existing borrower to an application as a co-borrower.
- Example 3: Adding a new borrower to an application as a co-borrower.
- Example 4: Adding multiple borrowers to an application as co-borrowers.
{
"coBorrowerIdToDelete": "63ca97e69ee2e89fc9163772"
}
{
"coBorrowersToAdd": ["63ca97e69ee2e89fc9163772"]
}
{
"coBorrowersToAdd": [
{
"type": "company",
"variables": {
"variable_system_name_1": "Example",
"variable_system_name_2": 999,
"variable_system_name_3": true,
"variable_system_name_4": "+19172245555",
"variable_system_name_5": "date"
}
}
]
}
{
"coBorrowersToAdd": [
"63ca97e69ee2e89fc9163772",
{
"type": "person",
"variables": {
"variable_system_name_1": "Example",
"variable_system_name_2": 999,
"variable_system_name_3": true,
"variable_system_name_4": "+19172245555",
"variable_system_name_5": "date"
}
},
{
"type": "company",
"variables": {
"variable_system_name_1": "Example",
"variable_system_name_2": 999,
"variable_system_name_3": true,
"variable_system_name_4": "+19172245555",
"variable_system_name_5": "date"
}
}
]
}
We strongly recommend to send the date value in "MM/DD/YYYY" format to avoid any issues with date representation.