lifeInsurance
- base
- localhost
- dev
- prod
/v2/private/deepDives/lifeInsurance
http://localhost:1350/v2/private/deepDives/lifeInsurance
https://dev.everdays.com/v2/private/deepDives/lifeInsurance
https://everdays.com/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​
| Param | Type | Description |
|---|---|---|
| policySupport | Array | The user's selected hobbies |
| financialPriorities | Array Enum - ['payingFuneral','unpaidBills','payingEstateTaxes','leavingForKids','donation'] | The user's type of financial priorities |
| livingStatus | String Enum - ['stayHome', 'upgrade', 'downsize', 'rent'] | The user's living Status |
| billsAndDebt | Array 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"
}
]
}
}
}