# List MSP Employee

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/msp/employees/:
    get:
      summary: List MSP Employee
      deprecated: false
      description: ''
      tags:
        - MSP Guide/API Reference/MSP Employee
      parameters:
        - name: invited_users
          in: query
          description: ''
          required: false
          example: 'true'
          schema:
            type: boolean
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type: 'null'
                  previous:
                    type: 'null'
                  results:
                    type: array
                    items:
                      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
                      x-apidog-orders:
                        - id
                        - uid
                        - first_name
                        - last_name
                        - email
                        - msp_node
                        - msp_node_name
                        - msp_node_uid
                        - app_role
                        - app_role_name
                        - status
                required:
                  - count
                  - next
                  - previous
                  - results
                x-apidog-orders:
                  - count
                  - next
                  - previous
                  - results
              example:
                count: 1
                next: null
                previous: null
                results:
                  - 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: ''
        '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-28136249-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security:
  - bearer: []

```
