> ## Documentation Index
> Fetch the complete documentation index at: https://developer.rollfi.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# getBenefitValidEffectiveMonths

> 
The `getBenefitValidEffectiveMonths` API retrieves valid effective months for benefit enrollment.

### What it does:

- Returns available effective months when benefits can be enrolled or modified
- Provides valid timing options for benefit enrollment periods

### Notes:

- Used before enrolling employees in benefits to ensure proper effective month selection
- Helps determine when benefit changes can take effect based on company policies



## OpenAPI

````yaml get /benefits/getBenefitValidEffectiveMonths
openapi: 3.0.1
info:
  title: Default module
  description: ''
  version: 1.0.0
servers: []
security:
  - basic: []
tags: []
paths:
  /benefits/getBenefitValidEffectiveMonths:
    get:
      tags: []
      summary: getBenefitValidEffectiveMonths
      description: >-

        The `getBenefitValidEffectiveMonths` API retrieves valid effective
        months for benefit enrollment.


        ### What it does:


        - Returns available effective months when benefits can be enrolled or
        modified

        - Provides valid timing options for benefit enrollment periods


        ### Notes:


        - Used before enrolling employees in benefits to ensure proper effective
        month selection

        - Helps determine when benefit changes can take effect based on company
        policies
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                method:
                  type: string
                  title: addUserBankAccount
                getBenefitValidEffectiveMonths:
                  type: string
              required:
                - method
                - getBenefitValidEffectiveMonths
            example:
              method: getBenefitValidEffectiveMonths
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x--orders:
                  - CompanyFundingSourceEntity
              example:
                - November 2024
                - December 2024
                - January 2025
                - February 2025
                - March 2025
                - April 2025
          headers: {}
      deprecated: false
      security:
        - basic: []
components:
  securitySchemes:
    basic:
      type: http
      scheme: basic

````