lifetimeCare
- base
- localhost
- dev
- prod
/v2/private/ltc/lifetimeCare
http://localhost:1350/v2/private/ltc/lifetimeCare
https://dev.everdays.com/v2/private/ltc/lifetimeCare
https://everdays.com/v2/private/ltc/lifetimeCare
Available Methods​
- POST
POST /v2/private/ltc/lifetimeCare​
This endpoint is used to save information on the lifetime Care step in the LTC flow.
Params​
| Param | Type | Description |
|---|---|---|
| careFacilityType | String Enum - ['inHome', 'independentLiving', 'assistedLiving', 'nursingHome', 'notSure'] | The user type of facility envision for care |
| facilityLocationPriority | String Enum - ['nearfamily', 'affordable', 'premiumFacility', 'noPreference'] | The user priority for the location of facility |
| relationshipStatus | Array Enum - ['married', 'divorced', 'dating', 'flySolo'] | The user relationship status |
| propertyStatus | Array Enum - ['ownOutRight', 'ownedByBank', 'iRent'] | The user property status |
| careSafety | Number | The user's care safety net |
| policyValue | Number | The user's evaluate how much they set aside |
| insuranceCover | Array Enum - ['payingFuneral', 'unpaidBills', 'replaceMyIncome', 'leavingForFamily', 'donation'] | The user's insurance covers |
| selections | Array | The user's leave financial legacy |
Example request body
body: {
"careFacilityType": "inHome",
"facilityLocationPriority": "nearfamily",
"relationshipStatus": "married",
"propertyStatus": "ownOutRight",
"careCosts": 2000,
"policyValue": 3000,
"insuranceCover": ["payingFuneral", "donation"],
"selections":[
{
"id": 2,
"title": "Spouse"
},
{
"id": 3,
"title": "Son"
}
],
}
Returns​
The entire user object.
Example return object with user.ltc
user: {
"ltc": {
"lifetimeCare": {
"leaveFinancialLegacy": {
"selections": [
{
"id": 2,
"title": "Board Games"
},
{
"id": 3,
"title": "Golf"
}
]
},
"relationshipStatus": [
"married"
],
"propertyStatus": [
"ownOutRight"
],
"insuranceCover": [
"payingFuneral",
"donation"
],
"careCosts": 100,
"careFacilityType": "inHome",
"facilityLocationPriority": "nearfamily",
"policyValue": 200
}
}
}