Prefilling Lead Data with Mobile SDKs
This page describes how to prefill any user data you already have into your Mobile SDK implementation
{
"firstName": "Bob", // required
"lastName": "Dylan", // required
"email": "bobdylan@gmail.com", // required
"loanAmount": 7500,
// you can instead use "defaultSliderLoanAmount", if you want to suggest a default loan amount but still allow the user to edit it.
// if "loanAmount" is prefilled, "defaultSliderLoanAmount" will be ignored
"purpose": "credit_card_refi",
"dateOfBirth": new Date("1990-01-01"),
"address": {
"street": "1600 Pennsylvania Avenue",
"city": "Washington",
"state": "DC",
"zip": "20500"
},
"primaryPhone": "2325624852",
"creditRating": "good",
"propertyStatus": "own_with_mortgage",
"educationLevel": "associate",
"employmentStatus": "employed",
"annualIncome": "20000",
"hasDirectDeposit": false,
"ssn": "512-54-7862",
"bankRoutingNumber": "123456789",
"bankAccountNumber": "55555555555"
}Example React Native Implementation
PrefilledData Type Validations
Enums/Accepted Values for Certain Fields
PrefilledData Sanitization
Last updated
Was this helpful?