Health Insurance

Retrieve an employee offer

Retrieve group's health insurance offer for an employee by employee_offer_id.

get/employees/{employee_id}/health_insurance/offers/{employee_offer_id}

Path parameters

employee_idstring required
Example:ee_3b1333d87d9d4fd6ad83ba7f6b0e951a
employee_offer_idstring required
Example:eeho_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

objectstring

The object type

idstring required

Unique identifier for offer

employer_idstring required

The Id of the employer for which the offer is available

employee_idstring required

The Id of the employee for which the offer is available

external_customer_idstring nullable

A unique identifier assigned by the Employer of Record (EoR) platform to the Customer (i.e. the company using the EoR service) for which the employee is employed. This ID groups employees under this Customer, enabling the aggregation of contribution reporting and other values per Customer rather than per legal entity. This parameter is only available to EoR platforms.

status'action_required' | 'not_undertaken' | 'accepted' required

Example response

{
  "id": "eeho_3b1333d87d9d4fd6ad83ba7f6b0e951a",
  "employer_id": "er_3b1333d87d9d4fd6ad83ba7f6b0e951a",
  "employee_id": "ee_3b1333d87d9d4fd6ad83ba7f6b0e951a",
  "required_action": {
    "due_at": "2024-12-01"
  },
  "coverage_level": {
    "plan_id": "pl_3b1333d87d9d4fd6ad83ba7f6b0e951a"
  }
}