userInfo
- base
- localhost
- dev
- prod
/v2/private/ltc/userInfo
http://localhost:1350/v2/private/ltc/userInfo
https://dev.everdays.com/v2/private/ltc/userInfo
https://everdays.com/v2/private/ltc/userInfo
Available Methods​
- POST
POST /v2/private/ltc/userInfo​
This endpoint is used to save information on the user account step in the LTC flow.
Params​
| Param | Type | Description |
|---|---|---|
| dateOfBirth | String | The user's date of birth |
| gender | String | The user's gender |
| state | String | The user's Sate address (ex. MI) |
Example request body
body: {
"dateOfBirth": "2021-07-29T16:50:16.791+00:00",
"gender": "M",
"state": "KY"
}
Returns​
The entire user object.
Example return object with user
user: {
...user,
dateOfBirth: "2021-07-29T16:50:16.791+00:00",
gender: "M",
address: {
state: "KY"
},
age: 1
}