added

May 12, 2022

We enabled Google Places API to retrieve suggested autocompletions for addresses and added new variable data type "Address".

Release Details

New variable data type - "Address"

  • Typing text automatically triggers Google Places API to retrieve suggested autocompletions.
  • Suggestions are filtered by the organization's Country (Company Settings > General).
  • If needed, the underlying address components can be edited by the user (Click on the Address icon to edit the properties).

For newly created organizations we changed the set of standard variables seeded by default.

  • Previously we had:
  • Borrower/Coborrower Street Address
  • Borrower/Coborrower City
  • Borrower/Coborrower State Or Province
  • Borrower/Coborrower ZIP Or Postal Code
  • Borrower/Coborrower Country
  • Now, in new organisations you'll find the following standard variables:
  • Borrower Home Address (address datatype)
  • Coborrower Home Address (address datatype)
  • Coborrower 2 Home Address (address datatype)
  • Coborrower 3 Home Address (address datatype)
  • Intermediary Address (address datatype)

📘

Note

In the database data is saved as an object with several properties:

  • street_number
  • street_name
  • sublocality
  • city
  • state_or_province
  • zip_or_postal_code
  • country

So if you're passing the variable with address data type via DigiFi’s API, you need to provide the underlying properties in object form:

{
"home_address": {
     "street_number": "Street Number",
     "street_name": "Street Name",
     "sublocality": "Sublocality",
     "city": "City",
     "state_or_province": "State Or Province",
     "country": "Country",
     "zip_or_postal_code": "Zip Or Postal Code"
    }
}

Tasks completion automation

  • Define conditions to be checked for task to be marked as Done automatically if a condition passes (using DigiFi's formula language).

Enhancements to DigiFi API security

API Credentials:

  • Now we’ll only have one type of key “API Key”.
  • Only “Owner” can generate a new key. Generating a new key requires 2FA.
  • The key is displayed in a modal after generation and must be copied. The key will no longer be displayed on the UI and will hashed in the database.
  • Up to 5 keys can be generated and used.

IP Address Whitelist:

  • DigiFi platform now provides an optional IP address whitelisting for public API requests through UI.
  • Only “Owner” can add an IP address to the list. Adding IP address requires 2FA.