Skip to main content

start

/v2/private/deepDives/start

Available Methods​

  • POST

POST /v2/private/deepDives/start​

This endpoint is used to save information on the Goals step in the Pre-Deep Dives flow.

Params​

ParamTypeDescription
futureCareString Enum - ['no', 'notSure', 'yes']The user's selecting Future Care Needs
lifeInsuranceString Enum - ['no', 'notSure', 'yes']The user's selecting Life Insurance & Estate
funeralPlanString Enum - ['no', 'notSure', 'yes']The user's selecting Funeral Plan & Expenses
Example request body
body: { 
"futureCare": "no",
"lifeInsurance": "yes",
"funeralPlan": "yes"
}

Returns​

The entire user object.

Example return object with user.goals
user: {
"goals": {
"funeralPlan": "yes",
"futureCare": "no",
"lifeInsurance": "yes"
}
}