> ## 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 Office Staff

> Retrieve an office staff



## OpenAPI

````yaml get /api/2.0/office_staff/{staff_id}/
openapi: 3.1.0
info:
  contact:
    name: Elation Health
    url: https://www.elationhealth.com/
  description: Elation Health API v2.0
  title: Practice 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/office_staff/{staff_id}/:
    get:
      tags:
        - Office Staff
      summary: Retrieve Office Staff
      description: Retrieve an office staff
      operationId: office_staff_retrieve
      parameters:
        - description: The ID of the staff member to retrieve
          in: path
          name: staff_id
          required: true
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PracticeToStaff'
          description: ''
      security:
        - oauth2: []
components:
  schemas:
    PracticeToStaff:
      properties:
        created_date:
          description: When staff was added to the system.
          format: date-time
          readOnly: true
          type:
            - string
            - 'null'
        dob:
          format: date
          type:
            - string
            - 'null'
        email:
          description: Get office email using fallbacks
          readOnly: true
          type:
            - string
            - 'null'
        first_name:
          maxLength: 50
          type: string
        id:
          readOnly: true
          type: integer
        last_name:
          maxLength: 60
          type: string
        middle_name:
          maxLength: 50
          type: string
        phone:
          maxLength: 20
          type:
            - string
            - 'null'
        practice:
          format: int64
          readOnly: true
          type: integer
        prefix:
          maxLength: 20
          type: string
        sex:
          $ref: '#/components/schemas/PracticeToStaffSexEnum'
        suffix:
          maxLength: 20
          type: string
        user_id:
          readOnly: true
          type:
            - integer
            - 'null'
      required:
        - last_name
      type: object
    PracticeToStaffSexEnum:
      enum:
        - Female
        - Intersex/Other
        - Male
        - None selected
      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

````