Skip to content

Reference IDs

Several fields in the LeadInput type accept reference IDs instead of free-form text. This page documents the valid values for each reference field.

Residence Type

Use residenceTypeId to indicate the applicant’s housing situation.

IDValueDescription
1Home OwnerOwns their home
2RentRenting
3Living with FamilyLiving with family members
4OtherOther arrangement

Example:

{
"residenceTypeId": 1 // Home Owner
}

Income Source

Use incomeSourceId to indicate the primary source of income.

IDValueDescription
1EmployedRegular employment
2Social SecuritySocial Security benefits
3PensionPension income
4DisabilityDisability benefits
5Self EmployedSelf-employment income
6StudentStudent
7UnemployedCurrently unemployed

Example:

{
"incomeSourceId": 1 // Employed
}

Pay Frequency

Use payFrequencyId to indicate how often the applicant receives income.

IDValueDescription
1WeeklyPaid every week
2Every two weeksPaid every two weeks (bi-weekly)
3Twice a monthPaid twice per month (semi-monthly)
4MonthlyPaid once per month
54 WeeklyPaid every 4 weeks
6OtherOther pay schedule

Example:

{
"payFrequencyId": 2 // Every two weeks
}

Loan Purpose

Use loanPurposeId to indicate the purpose of the requested loan.

IDValueDescription
1Debt ConsolidationConsolidate existing debts
2Home improvement / Pool / SolarHome renovation, pool, or solar installation
3Vacation / TravelTravel or vacation expenses
4New auto purchaseNew vehicle purchase
5Large PurchaseMajor purchase
6Pay off credit cardsCredit card payoff
7Student Loan RefinancingRefinance student loans
8EducationEducation expenses
9Special OccasionSpecial event or celebration
10Cosmetic ProceduresCosmetic or elective procedures
11Moving and RelocationMoving expenses
12Household ExpensesGeneral household costs
13Medical/DentalMedical or dental expenses
14TaxesTax payments
15BusinessBusiness expenses
16OtherOther purpose
17Funeral expensesFuneral costs
18Auto loan refinanceRefinance existing auto loan
19Used auto purchaseUsed vehicle purchase
20Auto lease buyoutBuy out auto lease
21Baby / Adoption expensesBaby or adoption costs
22Emergency expensesEmergency financial needs
23Wedding / EngagementWedding or engagement costs
24Auto repairsVehicle repairs
25Equipment PurchaseEquipment acquisition

Example:

{
"loanPurposeId": 1 // Debt Consolidation
}

State Codes

Use standard 2-letter USPS state abbreviations for the state field.

States

CodeStateCodeState
ALAlabamaMTMontana
AKAlaskaNENebraska
AZArizonaNVNevada
ARArkansasNHNew Hampshire
CACaliforniaNJNew Jersey
COColoradoNMNew Mexico
CTConnecticutNYNew York
DEDelawareNCNorth Carolina
FLFloridaNDNorth Dakota
GAGeorgiaOHOhio
HIHawaiiOKOklahoma
IDIdahoOROregon
ILIllinoisPAPennsylvania
INIndianaRIRhode Island
IAIowaSCSouth Carolina
KSKansasSDSouth Dakota
KYKentuckyTNTennessee
LALouisianaTXTexas
MEMaineUTUtah
MDMarylandVTVermont
MAMassachusettsVAVirginia
MIMichiganWAWashington
MNMinnesotaWVWest Virginia
MSMississippiWIWisconsin
MOMissouriWYWyoming

Territories

CodeTerritory
DCDistrict of Columbia
PRPuerto Rico
VIVirgin Islands
GUGuam

Complete Example

Here’s an example using multiple reference IDs:

{
"input": {
"firstName": "John",
"lastName": "Doe",
"dateOfBirth": "1985-06-15",
"email": "john.doe@example.com",
"homePhone": "9496779225",
"address1": "123 Main Street",
"city": "Los Angeles",
"state": "CA",
"zipCode": "90001",
"leadSourceId": "partner-sandbox",
"productCodes": "3225,3226,3227,3228,3229",
// Reference IDs
"residenceTypeId": 2, // Rent
"incomeSourceId": 1, // Employed
"payFrequencyId": 2, // Every two weeks
"loanPurposeId": 1 // Debt Consolidation
}
}