# Get MSP Employee

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/employees/{employee_id}/:
    get:
      summary: Get MSP Employee
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/MSP Employee
      parameters:
        - name: employee_id
          in: path
          description: ''
          required: true
          example: '{{employee_id}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  uid:
                    type: string
                  first_name:
                    type: string
                  last_name:
                    type: string
                  email:
                    type: string
                  msp_node:
                    type: integer
                  msp_node_name:
                    type: string
                  msp_node_uid:
                    type: string
                  app_role:
                    type: integer
                  app_role_name:
                    type: string
                  status:
                    type: string
                required:
                  - id
                  - uid
                  - first_name
                  - last_name
                  - email
                  - msp_node
                  - msp_node_name
                  - msp_node_uid
                  - app_role
                  - app_role_name
                  - status
                x-apidog-orders:
                  - id
                  - uid
                  - first_name
                  - last_name
                  - email
                  - msp_node
                  - msp_node_name
                  - msp_node_uid
                  - app_role
                  - app_role_name
                  - status
              example:
                id: 106
                uid: 1e1283f9-3551-4ef6-83ef-234199a75c9b
                first_name: Admin
                last_name: User
                email: admin@acmecorp.com
                msp_node: 69
                msp_node_name: Acme Corp
                msp_node_uid: d439d359-62fc-44ba-87f1-c54ed0f3559d
                app_role: 1
                app_role_name: MSP Owner
                status: Current
          headers: {}
          x-apidog-name: ''
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apidog-orders: []
              example:
                error:
                  - >-
                    There was an issue processing your request, please try
                    again.
          headers: {}
          x-apidog-name: Basic Error
        '403':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                required:
                  - detail
                x-apidog-orders:
                  - detail
              example:
                detail: Authentication credentials were not provided.
          headers: {}
          x-apidog-name: Unauthenticated
      security:
        - bearer: []
      x-apidog-folder: MSP Guide/API Reference/MSP Employee
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1187388/apis/api-28136250-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
