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

# Forgot Username

> Handles the process for users who have forgotten their username by initiating a new session.



## OpenAPI

````yaml get /frontend/forgot_username/{client_id}/{program_id}/{session_id}
openapi: 3.0.0
info:
  title: Example for response examples value
  version: '1.0'
servers:
  - url: https://api.helpyousponsor.com/v1
    description: Production
security: []
paths:
  /frontend/forgot_username/{client_id}/{program_id}/{session_id}:
    get:
      tags:
        - Frontend
      summary: Forgot Username
      description: >-
        Handles the process for users who have forgotten their username by
        initiating a new session.
      operationId: forgotUsername
      parameters:
        - name: client_id
          in: path
          description: Client ID associated with the user account
          required: true
          schema:
            type: integer
        - name: program_id
          in: path
          description: Program ID associated with the user account
          required: true
          schema:
            type: integer
        - name: session_id
          in: path
          description: Session ID for the process (optional)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Username recovery initiated
          content:
            application/json:
              schema:
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    properties:
                      session_id:
                        type: string
                      client_id:
                        type: integer
                      program_id:
                        type: integer
                    type: object
                type: object

````