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

# List OrgMonth

> Retrieve a list of OrgMonths



## OpenAPI

````yaml get /vLatest/action/glasscore/orgmonth
openapi: 3.1.0
info:
  version: 2.0.0
  title: Health Street API
  description: >-
    The Health Street API provides secure and reliable endpoints to manage drug
    tests, background checks, DNA checks, and occupational health tests.
servers:
  - url: https://api.glass.fm
security: []
paths:
  /vLatest/action/glasscore/orgmonth:
    get:
      tags:
        - OrgMonth
      summary: List OrgMonth
      description: Retrieve a list of OrgMonths
      operationId: ListOrgMonth
      parameters:
        - $ref: '#/components/parameters/return'
        - $ref: '#/components/parameters/isAdditionalData'
      responses:
        '200':
          description: A list of OrgMonths
          content:
            application/json:
              schema:
                type: object
                properties:
                  countEligibleAll:
                    type: number
                    nullable: true
                    description: >-
                      Represents the total number of all eligible entities
                      within an organization for a specific month.
                  countEligibleRandomPool:
                    type: number
                    nullable: true
                    description: >-
                      Represents the number of eligible entities within a random
                      pool for a specific organization in a given month.
                  countPickedAlcohol:
                    type: number
                    nullable: true
                    description: >-
                      Represents the total number of alcoholic items selected in
                      a specific organization for a given month.
                  countPickedAlcoholResult:
                    type: number
                    nullable: true
                    description: >-
                      Represents the total number of alcohol-related results
                      selected within a specific organization for a given month.
                  countPickedDrug:
                    type: number
                    nullable: true
                    description: >-
                      Represents the total number of times a specific drug was
                      selected within an organization in a given month.
                  countPickedDrugResult:
                    type: number
                    nullable: true
                    description: >-
                      Represents the total number of times a specific drug was
                      selected within a given month by an organization.
                  dropCoveredEmployee:
                    type: string
                    description: >-
                      Indicates whether an employee covered under the
                      organization's insurance was removed during a specific
                      month.
                  dropMisReport:
                    type: string
                    description: >-
                      Indicates whether a miscellaneous report was dropped for a
                      specific organization in a particular month.
                  dropRandomPick:
                    type: string
                    description: >-
                      Indicates whether a random selection is discarded in a
                      specific month for an organization.
                  id:
                    type: number
                    description: Unique identifier.
                  label:
                    type: string
                    description: >-
                      Represents the identifier or name assigned to a specific
                      month related to an organization.
                  OrgId:
                    type: number
                    nullable: true
                    description: >-
                      Represents the unique identifier for an organization in
                      the OrgMonth table.
                required:
                  - countEligibleAll
                  - countEligibleRandomPool
                  - countPickedAlcohol
                  - countPickedAlcoholResult
                  - countPickedDrug
                  - countPickedDrugResult
                  - dropCoveredEmployee
                  - dropMisReport
                  - dropRandomPick
                  - id
                  - label
                  - OrgId
components:
  parameters:
    return:
      schema:
        $ref: '#/components/schemas/return'
      required: false
      name: return
      in: query
    isAdditionalData:
      schema:
        $ref: '#/components/schemas/isAdditionalData'
      required: false
      name: isAdditionalData
      in: query
  schemas:
    return:
      type: string
      description: >-
        Comma-separated list of specific fields to return/append in the
        response. See `isAdditionalData` for more details.
      example: id,nameFirst,nameLast
    isAdditionalData:
      type: boolean
      description: >-
        Set to `true` to merge requested fields with default response, or
        false/omit to return only requested fields plus `ID`.
      example: true

````