Update Borrower

How to update a Borrower using the DigiFi API.

The Update Borrower API is used to update a borrower. You can pass in all borrower parameters (and update the entire set of borrower data) or pass in only the parameters you want to update (and only update those parameters).


Example Requests

Below please find the JSON body for two example requests:

  • Example 1: Updating all parameters of a borrower.
  • Example 2: Updating just some parameters of a borrower.
{
  "variables": {
    "some_variable_to_change": "some_value_to_change"
  },
  "type": "company",
  "lockEndDate": null
}
{
  "lockEndDate": "2025-08-09T18:31:42",
  "lockReason": "Some Reason"
}

📘

We strongly recommend to send the date value in "MM/DD/YYYY" format to avoid any issues with date representation.

📘

Please note that each row in a variable of type Table must contain a unique string _id field.

Language
Authorization
Header