Health Insurance
Retrieve an employee policy
Retrieve group's health insurance policy for an employee by employee_policy_id.
get/employees/{employee_id}/health_insurance/policies/{employee_policy_id}
Path parameters
employee_idstring required
Example:ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
employee_policy_idstring required
Example:eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a
Headers
X-Platform-Idstring
The target platform id. Required only when calling with a dashboard (WorkOS AuthKit) access token instead of a platform API key — the token carries no platform claim, so the caller must say which platform it means. Ignored for platform API key / embed session token callers.
Response
OK
Example response
{
"id": "eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a",
"employer_id": "er_3b1333d87d9d4fd6ad83ba7f6b0e951a",
"employee_id": "ee_3b1333d87d9d4fd6ad83ba7f6b0e951a",
"start_date": "2024-12-01",
"end_date": "2024-12-01",
"cancellation_date": "2024-12-01",
"renewal": {
"renewal_date": "2024-12-01",
"window_start_date": "2024-12-01",
"window_end_date": "2024-12-01",
"decision_confirmed": true,
"renewed_health_insurance_id": "eehp_3b1333d87d9d4fd6ad83ba7f6b0e951a"
},
"opt_out_deadline_date": "2024-12-01",
"coverage_level": {
"plan_id": "pl_3b1333d87d9d4fd6ad83ba7f6b0e951a"
},
"enrolled_dependants_count": 123,
"estimated_gross_premium": {
"monthly": {
"employee_contribution": 123.45,
"employer_contribution": 123.45,
"total": 123.45
},
"term": {
"employee_contribution": 123.45,
"employer_contribution": 123.45,
"total": 123.45
}
}
}