Skip to main content

finalWishes

/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​

ParamTypeDescription
familySupportString Enum - ['funeralHome', 'churchOrtemple', 'handleOnTheirOwn']The user's selected family Support
restingPlaceString Enum - ['cremation', 'cremationAndBurial', 'traditionalBurial']The user's selecting resting place
experienceString Enum - ['traditionalOrReligious', 'socialGathering', 'familyDecide']The user's experience
vibeString Enum - ['celebratory', 'warm', 'dignified']The user's selecting the vibe
guestListString 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"
}
}