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

# Retrieve User

> Retrieve a single user



## OpenAPI

````yaml get /api/2.0/users/{id}/
openapi: 3.1.0
info:
  contact:
    name: Elation Health
    url: https://www.elationhealth.com/
  description: Elation Health API v2.0
  title: User Management API
  version: 2.0.0
servers:
  - description: Sandbox Server
    url: https://sandbox.elationemr.com
  - description: Production Server
    url: https://api.app.elationemr.com
security: []
paths:
  /api/2.0/users/{id}/:
    get:
      tags:
        - Users
      summary: Retrieve User
      description: Retrieve a single user
      operationId: users_retrieve
      parameters:
        - in: path
          name: id
          required: true
          schema:
            format: int64
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
          description: ''
      security:
        - oauth2: []
components:
  schemas:
    User:
      properties:
        account_type:
          oneOf:
            - $ref: '#/components/schemas/AccountTypeEnum'
            - $ref: '#/components/schemas/NullEnum'
        credentialed:
          default: false
          type: boolean
        email:
          maxLength: 255
          type: string
        first_name:
          maxLength: 50
          type: string
        has_chart_access:
          default: true
          type: boolean
        id:
          readOnly: true
          type: integer
        is_active:
          type: boolean
        is_practice_admin:
          default: false
          type: boolean
        is_read_only:
          default: false
          type: boolean
        last_name:
          maxLength: 60
          type: string
        physician_qualifications:
          $ref: '#/components/schemas/PhysicianQualifications'
        practice:
          format: int64
          type: integer
        user_type:
          $ref: '#/components/schemas/UserTypeEnum'
      required:
        - email
        - first_name
        - is_active
        - last_name
        - practice
        - user_type
      type: object
    AccountTypeEnum:
      description: |-
        * `regular` - Regular staff
        * `oncall` - On call (not paid)
        * `ft_non_prescribing` - Full-Time Non-Prescribing
        * `pt_prescribing` - Limited Use
      enum:
        - regular
        - oncall
        - ft_non_prescribing
        - pt_prescribing
      type: string
    NullEnum:
      type: 'null'
    PhysicianQualifications:
      properties:
        credentials:
          maxLength: 50
          type: string
        dea:
          maxLength: 50
          type: string
        license:
          maxLength: 50
          type: string
        license_state:
          maxLength: 2
          type: string
        npi:
          maxLength: 10
          type:
            - string
            - 'null'
      required:
        - credentials
        - license
        - license_state
      type: object
    UserTypeEnum:
      enum:
        - physician
        - staff
      type: string
  securitySchemes:
    oauth2:
      flows:
        clientCredentials:
          scopes:
            act_as_user: >-
              Impersonate a provider via X-On-Behalf-Of (combinable with apiv2
              or system scopes)
            apiv2: Full access to the API
            system/{resource_name}.read: Read access to a specific resource
            system/{resource_name}.write: Write access to a specific resource
          tokenUrl: /api/2.0/oauth2/token/
      type: oauth2

````