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

> Retrieve a list of Persons



## OpenAPI

````yaml get /v2/action/glasscore/person
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:
  /v2/action/glasscore/person:
    get:
      tags:
        - Person
      summary: List Person
      description: Retrieve a list of Persons
      operationId: ListPerson
      parameters:
        - $ref: '#/components/parameters/return'
        - $ref: '#/components/parameters/isAdditionalData'
      responses:
        '200':
          description: A list of Persons
          content:
            application/json:
              schema:
                type: object
                properties:
                  c_org:
                    type: string
                    description: >-
                      Represents the organization that the individual in the
                      Person table is associated with.
                  city:
                    type: string
                    description: >-
                      Represents the urban area or municipality where the
                      individual resides.
                  dateOfBirth:
                    anyOf:
                      - type: string
                      - type: string
                    description: >-
                      Records the day, month, and year when the individual was
                      born.
                  email:
                    type: string
                    description: Stores the electronic mail address of the individual.
                  id:
                    type: number
                    description: Unique identifier.
                  isApplicant:
                    type: boolean
                    description: >-
                      Indicates whether the individual is a candidate for a
                      position or role.
                  isStaff:
                    type: boolean
                    description: Indicates whether the person is a staff member or not.
                  nameFirst:
                    type: string
                    description: >-
                      Contains the first name of the individual in the Person
                      table.
                  nameFirstLast:
                    type: string
                    description: >-
                      Stores the full name of an individual in the format of
                      first name followed by last name.
                  nameLast:
                    type: string
                    description: Stores the surname of the individual.
                  OrgId:
                    type: number
                    description: >-
                      Represents the unique identifier for the organization to
                      which the individual belongs.
                  phone:
                    type: string
                    description: Stores the contact number of the individual.
                  RandomPoolStatusId:
                    type: number
                    nullable: true
                    description: >-
                      Indicates the status of a person's association with a
                      random pool in a system, typically represented by a unique
                      identifier.
                  state:
                    type: string
                    description: >-
                      Indicates the U.S. state or territory where the individual
                      resides.
                  streetPrimary:
                    type: string
                    description: Contains the main street address for an individual.
                  streetSecondary:
                    type: string
                    description: >-
                      Contains additional information about the person's street
                      address such as apartment or suite number.
                  UserId:
                    type: number
                    nullable: true
                    description: >-
                      A unique identifier assigned to each individual in the
                      Person table.
                  zip:
                    type: string
                    description: >-
                      Stores the postal code associated with each individual's
                      residential address.
                required:
                  - c_org
                  - city
                  - dateOfBirth
                  - email
                  - id
                  - isApplicant
                  - isStaff
                  - nameFirst
                  - nameFirstLast
                  - nameLast
                  - OrgId
                  - phone
                  - RandomPoolStatusId
                  - state
                  - streetPrimary
                  - streetSecondary
                  - UserId
                  - zip
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

````