pub struct ReportingBorrowerSchema {Show 14 fields
pub user_id: String,
pub loan_id: String,
pub loan_number: Option<String>,
pub party_id: String,
pub role: Option<String>,
pub login_method: Option<String>,
pub activation_datetime: Option<String>,
pub invited_datetime: Option<String>,
pub credit_pulled_datetime: Option<String>,
pub assets_pulled_datetime: Option<String>,
pub income_verified_datetime: Option<String>,
pub workflow_milestone: Option<String>,
pub user_agent: Option<String>,
pub last_updated_datetime: Option<String>,
}
Fields§
§user_id: String
User id
loan_id: String
The UUID of the application in Blend’s system. The static identifier that should be used to connect the application’s identity across Blend and external integrations.
loan_number: Option<String>
A mutable identifier of the application. Not safe to use to connect the application’s identity across Blend and external systems because it can and (for most implementations) will change. Default value is an incremented ID set by Blend. Other Values could be LOS GUID after export of the loan to LOS (may be the same as the losID field or different), Can be manually set to anything by lenders in the UI or programmatically via the API.
party_id: String
The UUID of the party in Blend’s system. Equivalent to borrowerId
role: Option<String>
The role of the user
login_method: Option<String>
The method the user used to login
activation_datetime: Option<String>
The UTC timestamp of when the borrower activated their Blend user
invited_datetime: Option<String>
The UTC timestamp of when the borrower was invited to Blend
credit_pulled_datetime: Option<String>
The latest UTC timestamp of when the borrower’s credit was pulled through Blend
assets_pulled_datetime: Option<String>
The latest UTC timestamp of when the borrower connected their assets through Blend
income_verified_datetime: Option<String>
The most recent timestamp (in UTC) that a Blend Income Report was generated for that borrower (i.e. the borrower’s income was successfully verified)
workflow_milestone: Option<String>
The latest completed borrower milestone within Blend
user_agent: Option<String>
The most recent borrower user agent. Can be used to derive the last device type used.
last_updated_datetime: Option<String>
The timestamp (in UTC) of the latest action occurring for the borrower out of fields available in this report. Please note, this timestamp only updates if any of the above fields are updated - it does not apply to actions outside this report, so this field does not necessarily correspond to the last time the borrower took action on the loan. If all other timestamp fields are null, this timestamp defaults to the time the borrower user was created (and the borrower may not yet have been invited by the loan officer)