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

# Create Applicant

> Create a new Applicant



## OpenAPI

````yaml post /vLatest/action/glasscore/applicant
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/applicant:
    post:
      tags:
        - Applicant
      summary: Create Applicant
      description: Create a new Applicant
      operationId: CreateApplicant
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                aliasNameFirst:
                  type: string
                  description: Stores the first alias or nickname of the applicant.
                aliasNameLast:
                  type: string
                  description: Stores the last alias or nickname used by the applicant.
                applicationDate:
                  anyOf:
                    - type: string
                    - type: string
                  description: >-
                    Records the date when the applicant submitted their
                    application.
                currentAddressYearStart:
                  type: string
                  description: >-
                    The year the applicant began residing at their current
                    address.
                georgia_race:
                  type: string
                  description: >-
                    Indicates the racial or ethnic identity of the applicant
                    from Georgia.
                info:
                  type: array
                  items:
                    type: object
                    properties:
                      descrip:
                        type: string
                        description: Description of record.
                      infoItem:
                        type: array
                        items:
                          type: object
                          properties:
                            AttributeId:
                              type: string
                              description: >-
                                Unique identifier for the specific
                                characteristic or property of an information
                                item.
                            choice:
                              type: string
                              description: >-
                                Represents the selected option or decision
                                related to a specific information item.
                            featureSetDescrip:
                              type: string
                              description: >-
                                Contains details about the specific
                                characteristics or attributes of an information
                                item.
                            FeatureSetId:
                              type: number
                              description: >-
                                Unique identifier for a specific set of
                                characteristics or properties associated with an
                                information item.
                            featureSetName:
                              type: string
                              description: >-
                                Represents the group or category to which a
                                specific information item belongs.
                            InfoId:
                              type: number
                              nullable: true
                              description: >-
                                Unique identifier for each information item in
                                the database.
                            PersonId:
                              type: number
                              nullable: true
                              description: >-
                                Unique identifier assigned to each individual in
                                the InfoItem table.
                            valueDate:
                              anyOf:
                                - type: string
                                - type: string
                              description: >-
                                Represents the date associated with the specific
                                information item.
                            valueFeatureId:
                              type: number
                              nullable: true
                              description: >-
                                Identifies the specific characteristic or
                                attribute of the information item.
                            valueNumber:
                              type: number
                              nullable: true
                              description: >-
                                Represents the numerical data associated with a
                                specific information item.
                            valueText:
                              type: string
                              description: >-
                                Stores the textual content or information
                                related to a specific item in the InfoItem
                                table.
                          required:
                            - FeatureSetId
                        description: >-
                          Contains specific details or pieces of data related to
                          the information stored in the Info table.
                      isSubmitted:
                        type: number
                        nullable: true
                        description: >-
                          Indicates whether the information in the Info table
                          has been submitted or not.
                      OrderItemId:
                        type: number
                        description: Unique identifier for each item within an order.
                      PersonId:
                        type: number
                        nullable: true
                        description: >-
                          Unique identifier assigned to each individual in the
                          Info table.
                      ProductId:
                        type: number
                        nullable: true
                        description: >-
                          A unique identifier assigned to each product in the
                          Info table.
                    required:
                      - OrderItemId
                PersonId:
                  type: number
                  description: Unique identifier assigned to each individual applicant.
                priorAddressCity:
                  type: string
                  description: The city of the applicant's previous residence.
                priorAddressCounty:
                  type: string
                  description: The county of the applicant's previous address.
                priorAddressState:
                  type: string
                  description: >-
                    Represents the state of the previous address of the
                    applicant.
                priorAddressStreetPrimary:
                  type: string
                  description: >-
                    Contains the main street name of the applicant's previous
                    address.
                priorAddressStreetSecondary:
                  type: string
                  description: >-
                    Contains any additional information about the applicant's
                    previous street address such as apartment or unit number.
                priorAddressYearEnd:
                  type: string
                  description: >-
                    Represents the year the applicant ended residency at their
                    previous address.
                priorAddressYearStart:
                  type: string
                  description: >-
                    Indicates the year the applicant began living at their
                    previous address.
                priorAddressZip:
                  type: string
                  description: >-
                    Contains the postal code of the applicant's previous
                    residence.
                ssn:
                  type: string
                  description: Stores the unique Social Security Number of the applicant.
              required:
                - PersonId
      responses:
        '200':
          description: Applicant

````