Submit benefit elections
Completes the benefits election process for all pending enrollments for an employee. Processes enrollment decisions: which benefits to enroll/waive, plan selections, and dependent coverage. Pending enrollments transition to enrolled or waived status based on elections.
Path Parameters
Body Parameters
Returns
Unique enrollment identifier with 'enrl_' prefix
ID of the benefit product (bprd_*)
Timestamp when the enrollment was created
ID of the employee (empl_*)
ID of the plan year (plyr_*)
Timestamp when the enrollment was last updated
Date when coverage ends
Date when coverage begins
Employee's election decision: 'enrolled' (accepted) or 'waived' (declined)
Employee's monthly contribution in cents
Employer's monthly contribution in cents
ID of the selected plan (plan_*), if enrolled
Name of the selected plan
Submit benefit elections
curl https://api.vitablehealth.com/v1/employees/$EMPLOYEE_ID/enrollments/elect \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $VITABLE_connect_API_API_KEY" \
-d '{
"elections": [
{
"decision": "Enrolled",
"enrollment_id": "enrollment_id"
}
]
}'
[
{
"id": "id",
"benefit_product_id": "benefit_product_id",
"created_at": "2019-12-27T18:11:19.117Z",
"employee_id": "employee_id",
"plan_year_id": "plan_year_id",
"status": "pending",
"updated_at": "2019-12-27T18:11:19.117Z",
"coverage_end_date": "2019-12-27",
"coverage_start_date": "2019-12-27",
"coverage_tier": "Unspecified",
"decision": "decision",
"employee_contribution_cents": 0,
"employer_contribution_cents": 0,
"enrolled_dependents": [
{
"dependent_id": "dependent_id",
"first_name": "first_name",
"last_name": "last_name",
"relationship": "Spouse"
}
],
"selected_plan_id": "selected_plan_id",
"selected_plan_name": "selected_plan_name"
}
]
Returns Examples
[
{
"id": "id",
"benefit_product_id": "benefit_product_id",
"created_at": "2019-12-27T18:11:19.117Z",
"employee_id": "employee_id",
"plan_year_id": "plan_year_id",
"status": "pending",
"updated_at": "2019-12-27T18:11:19.117Z",
"coverage_end_date": "2019-12-27",
"coverage_start_date": "2019-12-27",
"coverage_tier": "Unspecified",
"decision": "decision",
"employee_contribution_cents": 0,
"employer_contribution_cents": 0,
"enrolled_dependents": [
{
"dependent_id": "dependent_id",
"first_name": "first_name",
"last_name": "last_name",
"relationship": "Spouse"
}
],
"selected_plan_id": "selected_plan_id",
"selected_plan_name": "selected_plan_name"
}
]