start
- base
- localhost
- dev
- prod
/v2/private/deepDives/start
http://localhost:1350/v2/private/deepDives/start
https://dev.everdays.com/v2/private/deepDives/start
https://everdays.com/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​
| Param | Type | Description |
|---|---|---|
| futureCare | String Enum - ['no', 'notSure', 'yes'] | The user's selecting Future Care Needs |
| lifeInsurance | String Enum - ['no', 'notSure', 'yes'] | The user's selecting Life Insurance & Estate |
| funeralPlan | String 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"
}
}