finalWishes
- base
- localhost
- dev
- prod
/v2/private/deepDives/finalWishes
http://localhost:1350/v2/private/deepDives/finalWishes
https://dev.everdays.com/v2/private/deepDives/finalWishes
https://everdays.com/v2/private/deepDives/finalWishes
Available Methods​
- POST
POST /v2/private/deepDives/finalWishes​
This endpoint is used to save information on the Final Wishes step in the Deep Dives flow.
Params​
| Param | Type | Description |
|---|---|---|
| familySupport | String Enum - ['funeralHome', 'churchOrtemple', 'handleOnTheirOwn'] | The user's selected family Support |
| restingPlace | String Enum - ['cremation', 'cremationAndBurial', 'traditionalBurial'] | The user's selecting resting place |
| experience | String Enum - ['traditionalOrReligious', 'socialGathering', 'familyDecide'] | The user's experience |
| vibe | String Enum - ['celebratory', 'warm', 'dignified'] | The user's selecting the vibe |
| guestList | String Enum - ['everyone', 'vip', 'private'] | The user's guest list |
Example request body
body: {
"familySupport": "funeralHome",
"restingPlace": "cremationAndBurial",
"experience": "socialGathering",
"vibe": "warm",
"guestList": "vip"
}
Returns​
The entire user object.
Example return object with user.finalWishes
user: {
"finalWishes": {
"experience": "socialGathering",
"familySupport": "funeralHome",
"guestList": "vip",
"restingPlace": "cremationAndBurial",
"vibe": "warm"
}
}