> ## 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.

# Re-issue a benefit enrollment

> Re-issue an existing benefit enrollment, typically used when there are
changes needed to enrollment details, updates to dependent information,
or corrections to enrollment data. Requires administrative documentation
and evidence notes for audit purposes.




## OpenAPI

````yaml external-api-schema.yml post /v1/company-benefit-enrollments/{company_benefit_enrollment_id}/reissue
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/company-benefit-enrollments/{company_benefit_enrollment_id}/reissue:
    post:
      tags:
        - Enrollment Management
      summary: Re-issue a benefit enrollment
      description: |
        Re-issue an existing benefit enrollment, typically used when there are
        changes needed to enrollment details, updates to dependent information,
        or corrections to enrollment data. Requires administrative documentation
        and evidence notes for audit purposes.
      operationId: reissue_company_benefit_enrollment
      parameters:
        - in: path
          name: company_benefit_enrollment_id
          schema:
            type: string
            format: uuid
          required: true
          description: Unique identifier for the enrollment to re-issue
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReissueCompanyBenefitEnrollmentRequest'
      responses:
        '200':
          description: Enrollment re-issued successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReissueCompanyBenefitEnrollmentResponse'
      security:
        - partnerApiKey: []
components:
  schemas:
    ReissueCompanyBenefitEnrollmentRequest:
      type: object
      description: Request to re-issue a benefit enrollment
      properties:
        evidence_notes:
          type: string
          description: Administrative notes explaining the reason for re-issuance
        admin_ticket_number:
          type: string
          description: Administrative ticket or reference number for tracking
        qualifying_life_event_id:
          type: string
          format: uuid
          nullable: true
          description: Optional qualifying life event that triggered the re-issuance
      required:
        - evidence_notes
        - admin_ticket_number
    ReissueCompanyBenefitEnrollmentResponse:
      type: object
      description: Response from re-issuing a benefit enrollment
      properties:
        enrollment:
          $ref: '#/components/schemas/CompanyBenefitEnrollment'
      required:
        - enrollment
    CompanyBenefitEnrollment:
      type: object
      description: A benefit enrollment for an employee
      properties:
        id:
          type: string
          format: uuid
          description: Unique enrollment identifier
        enrollment_id:
          type: string
          format: uuid
          description: Base enrollment identifier
        benefit_id:
          type: string
          format: uuid
          description: Associated benefit identifier
        benefit_name:
          type: string
          description: Name of the enrolled benefit
        benefit_code:
          type: string
          description: Benefit type code
        member_id:
          type: string
          format: uuid
          description: Employee/member identifier
        member_full_name:
          type: string
          description: Employee full name
        status:
          type: string
          description: Current enrollment status
        coverage_start:
          type: string
          format: date
          description: Coverage effective date
        coverage_end:
          type: string
          format: date
          nullable: true
          description: Coverage termination date
        payroll_deduction_for_employee:
          type: integer
          description: Employee payroll deduction amount in cents
        payroll_deduction_for_dependent:
          type: integer
          description: Dependent payroll deduction amount in cents
        employer_allowance_in_cents:
          type: integer
          description: Employer contribution amount in cents
        created:
          type: string
          format: date-time
          description: Enrollment creation timestamp
        updated:
          type: string
          format: date-time
          description: Enrollment last update timestamp
      required:
        - id
        - enrollment_id
        - benefit_id
        - benefit_name
        - benefit_code
        - member_id
        - member_full_name
        - status
        - coverage_start
        - payroll_deduction_for_employee
        - payroll_deduction_for_dependent
        - employer_allowance_in_cents
        - created
        - updated
  securitySchemes:
    partnerApiKey:
      type: apiKey
      in: header
      name: X-Partner-API-Key
      description: Partner API key for external integrations

````