> ## Documentation Index
> Fetch the complete documentation index at: https://beta-docs.vitablehealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List active benefit enrollments for an employee

> Retrieve all active benefit enrollments for a specific employee.
Critical for payroll providers to determine current coverage.




## OpenAPI

````yaml external-api-schema.yml get /v1/members/{member_id}/benefits
openapi: 3.0.3
info:
  title: Vitable External Partner API
  version: 1.0.0
  description: >
    External API for Payroll Providers and PEO platforms to integrate with
    Vitable health plan products 

    for benefit administration. This API enables partner systems to manage
    benefit enrollment, 

    employee data, and plan information for their clients.


    Common integration scenarios:

    - Retrieve active benefit plans for employers

    - List enrolled employees for benefit periods  

    - Create and update employee records

    - Manage benefit enrollments and elections

    - Access enrollment status and eligibility information
servers:
  - url: https://api.vitablehealth.com
    description: Production server
  - url: https://api-staging.vitablehealth.com
    description: Staging server
security:
  - partnerApiKey: []
tags:
  - name: Company Benefits
    description: Benefit plans available to companies (plan years)
  - name: Company Members
    description: Employee management and information
  - name: Benefit Enrollments
    description: Employee benefit enrollment status and management
  - name: Member Benefits
    description: Individual employee benefit information
  - name: Benefit Eligibility
    description: Employee benefit eligibility information
  - name: Payroll Integration
    description: Payroll deduction and contribution calculations
  - name: Quoting
    description: Marketplace plan searches and insurance quotes
paths:
  /v1/members/{member_id}/benefits:
    get:
      tags:
        - Member Benefits
      summary: List active benefit enrollments for an employee
      description: |
        Retrieve all active benefit enrollments for a specific employee.
        Critical for payroll providers to determine current coverage.
      operationId: list_active_benefit_enrollments_for_member
      parameters:
        - in: path
          name: member_id
          schema:
            type: string
            format: uuid
          required: true
          description: Unique identifier for the employee/member
      responses:
        '200':
          description: List of active benefit enrollments
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ListActiveBenefitEnrollmentsForMemberResponse
      security:
        - partnerApiKey: []
components:
  schemas:
    ListActiveBenefitEnrollmentsForMemberResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ActiveBenefitEnrollment'
    ActiveBenefitEnrollment:
      type: object
      properties:
        enrollment_id:
          type: string
          format: uuid
          description: Unique enrollment identifier
        benefit_name:
          type: string
          description: Name of the benefit
        benefit_code:
          type: string
          description: Benefit type code
        benefit_type:
          type: string
          description: Category of benefit
        plan_name:
          type: string
          description: Selected plan name
        tier_name:
          type: string
          description: Coverage tier
        premium_amount:
          type: integer
          description: Premium amount in cents
        coverage_start:
          type: string
          format: date
          description: Coverage start date
        coverage_end:
          type: string
          format: date
          description: Coverage end date
  securitySchemes:
    partnerApiKey:
      type: apiKey
      in: header
      name: X-Partner-API-Key
      description: Partner API key for external integrations

````