health
- base
- localhost
- dev
- prod
/v2/private/salesAgent/lead/:id/health
http://localhost:1350/v2/private/salesAgent/lead/:id/health
https://dev.everdays.com/v2/private/salesAgent/lead/:id/health
https://everdays.com/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​
| Param | Type | Description |
|---|---|---|
seriousIllness | Boolean | If the lead has a serious illness. |
inCare | Boolean | If the lead is in care. |
smoker | Boolean | If the lead is a smoker. |
height | Number | The lead's height. |
weight | Number | The 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: {
...
}