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

# getUser



## OpenAPI

````yaml get /getUser
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /getUser:
    get:
      tags:
        - EzzyRest
      summary: getUser
      operationId: getUser
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/User2SS'
            application/json:
              schema:
                $ref: '#/components/schemas/User2SS'
            text/json:
              schema:
                $ref: '#/components/schemas/User2SS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    User2SS:
      type: object
      properties:
        unresolved:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````