List member's qualifying life events
Retrieves a paginated list of qualifying life events for a member. QLEs are significant life changes (marriage, birth, adoption, loss of coverage) that allow benefit enrollment changes outside open enrollment.
Path Parameters
Query Parameters
Items per page (default: 20, max: 100)
Page number (default: 1)
Returns
Unique QLE identifier with 'qle_' prefix
Timestamp when the QLE was created
ID of the employee (empl_*)
End of the special enrollment period (typically 30-60 days from event)
Start of the special enrollment period
Date when the qualifying life event occurred
Type of qualifying life event (e.g., 'marriage', 'birth', 'adoption', 'loss_of_coverage', 'divorce')
ID of the member experiencing the life event (mbr_*)
Timestamp when the QLE was last updated
Additional notes or comments about the QLE
Timestamp when the QLE was reviewed, if reviewed
ID of the user who reviewed the QLE, if reviewed
List member's qualifying life events
curl https://api.vitablehealth.com/v1/members/$MEMBER_ID/qualifying-life-events \
-H "Authorization: Bearer $VITABLE_connect_API_API_KEY"
[
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"employee_id": "employee_id",
"enrollment_window_end": "2019-12-27",
"enrollment_window_start": "2019-12-27",
"event_date": "2019-12-27",
"event_type": "event_type",
"member_id": "member_id",
"status": "pending",
"updated_at": "2019-12-27T18:11:19.117Z",
"notes": "notes",
"reviewed_at": "2019-12-27T18:11:19.117Z",
"reviewed_by": "reviewed_by"
}
]
Returns Examples
[
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"employee_id": "employee_id",
"enrollment_window_end": "2019-12-27",
"enrollment_window_start": "2019-12-27",
"event_date": "2019-12-27",
"event_type": "event_type",
"member_id": "member_id",
"status": "pending",
"updated_at": "2019-12-27T18:11:19.117Z",
"notes": "notes",
"reviewed_at": "2019-12-27T18:11:19.117Z",
"reviewed_by": "reviewed_by"
}
]