List eligible plans
/v1/enrollments/{enrollment_id}/plans
Retrieves all insurance plans eligible for selection for a specific enrollment. Returns available plan options with coverage tiers, premium costs, deductibles, and carrier info. Use during enrollment process to show employees their plan choices.
Path Parameters
enrollment_id: string
Returns
id: string
Unique plan identifier (plan_*)
name: string
Display name of the plan
carrier_name: optional string
Name of the insurance carrier
deductible_cents: optional number
Annual deductible in cents
description: optional string
Plan description
out_of_pocket_max_cents: optional number
Annual out-of-pocket maximum in cents
List eligible plans
curl https://api.vitablehealth.com/v1/enrollments/$ENROLLMENT_ID/plans \
-H "Authorization: Bearer $VITABLE_connect_API_API_KEY"
[
{
"id": "id",
"costs": [
{
"coverage_tier": "Unspecified",
"employee_contribution_cents": 0,
"employer_contribution_cents": 0,
"total_monthly_premium_cents": 0
}
],
"name": "name",
"carrier_name": "carrier_name",
"deductible_cents": 0,
"description": "description",
"out_of_pocket_max_cents": 0,
"tier": "Bronze"
}
]
Returns Examples
[
{
"id": "id",
"costs": [
{
"coverage_tier": "Unspecified",
"employee_contribution_cents": 0,
"employer_contribution_cents": 0,
"total_monthly_premium_cents": 0
}
],
"name": "name",
"carrier_name": "carrier_name",
"deductible_cents": 0,
"description": "description",
"out_of_pocket_max_cents": 0,
"tier": "Bronze"
}
]