Skip to main content

health

/v2/private/salesAgent/lead/:id/health

Available Methods​

  • POST

POST /v2/private/salesAgent/lead/:id/health​

This endpoint is used by Sales Agents / Counselors to edit a lead's health information.

info

The user calling this endpoint must be Sales Agent / Counselor or Everdays Admin

Params​

ParamTypeDescription
seriousIllnessBooleanIf the lead has a serious illness.
inCareBooleanIf the lead is in care.
smokerBooleanIf the lead is a smoker.
heightNumberThe lead's height.
weightNumberThe lead's weight.
Example request body
body: {
"seriousIllness": false,
"inCare": false,
"smoker": false,
"height": 120,
"weight": 120
}

Returns​

The lead's user object.

Example return object of just user
user: {
...
}