> ## 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 pending benefit enrollments for a member

> Retrieve pending benefit enrollments that require action or approval.
Helps payroll providers track enrollment status and identify
enrollments that need completion or processing.




## OpenAPI

````yaml external-api-schema.yml get /v1/members/{member_id}/pending-company-benefit-enrollments
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}/pending-company-benefit-enrollments:
    get:
      tags:
        - Member Benefits
      summary: List pending benefit enrollments for a member
      description: |
        Retrieve pending benefit enrollments that require action or approval.
        Helps payroll providers track enrollment status and identify
        enrollments that need completion or processing.
      operationId: list_pending_company_benefit_enrollments_for_member
      parameters:
        - in: path
          name: member_id
          schema:
            type: string
            format: uuid
          required: true
          description: Unique identifier for the member
      responses:
        '200':
          description: List of pending benefit enrollments
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ListPendingCompanyBenefitEnrollmentsForMemberResponse
      security:
        - partnerApiKey: []
components:
  schemas:
    ListPendingCompanyBenefitEnrollmentsForMemberResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PendingBenefitEnrollment'
        pagination:
          $ref: '#/components/schemas/PaginationInfo'
    PendingBenefitEnrollment:
      type: object
      properties:
        enrollment_id:
          type: string
          format: uuid
          description: Enrollment identifier
        benefit_name:
          type: string
          description: Benefit name
        benefit_type:
          type: string
          description: Benefit type
        status:
          type: string
          enum:
            - Unanswered
            - Pending_Approval
            - Requires_Action
          description: Enrollment status
        submitted_date:
          type: string
          format: date-time
          nullable: true
          description: Date enrollment was submitted
      required:
        - enrollment_id
        - benefit_name
        - benefit_type
        - status
    PaginationInfo:
      type: object
      properties:
        page:
          type: integer
          description: Current page number
        limit:
          type: integer
          description: Number of items per page
        total_count:
          type: integer
          description: Total number of items
        total_pages:
          type: integer
          description: Total number of pages
  securitySchemes:
    partnerApiKey:
      type: apiKey
      in: header
      name: X-Partner-API-Key
      description: Partner API key for external integrations

````