Skip to main content

lifeInsurance

/v2/private/deepDives/lifeInsurance

Available Methods​

  • POST

POST /v2/private/deepDives/lifeInsurance​

This endpoint is used to save information on the Life Insurance step in the Deep Dives flow.

Params​

ParamTypeDescription
policySupportArrayThe user's selected hobbies
financialPrioritiesArray Enum - ['payingFuneral','unpaidBills','payingEstateTaxes','leavingForKids','donation']The user's type of financial priorities
livingStatusString Enum - ['stayHome', 'upgrade', 'downsize', 'rent']The user's living Status
billsAndDebtArray Enum - ['medical', 'mortgage', 'cc', 'auto', 'other']The user's bills and debt
Example request body
body: { 
"selections":[
{
"id": 2,
"title": "Board Games"
},
{
"id": 3,
"title": "Golf"
}
],
"customSelections": [
{ "title": "Testing" },
{ "title": "Custom" }
],
"financialPriorities": ["payingFuneral","unpaidBills"],
"livingStatus": "stayHome",
"billsAndDebt": ["medical"]
}

Returns​

The entire user object.

Example return object with user.lifeInsurance
user: {
"lifeInsurance": {
"billsAndDebt": [
"medical"
],
"financialPriorities": [
"payingFuneral",
"unpaidBills"
],
"livingStatus": "stayHome",
"policySupport": {
"customSelections": [
{
"title": "Testing"
},
{
"title": "Custom"
}
],
"selections": [
{
"id": 2,
"title": "Board Games"
},
{
"id": 3,
"title": "Golf"
}
]
}
}
}