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

# List employee managers

> List an employee's managers (clocks/leaves validators), flagging automatic (generated on the fly) vs manual (explicitly assigned).

<div className="endpoint-versions" data-nav-page="/api-reference-v2/core/v4/employees-employee-id-managers-get" data-nav-group="Employee Managers">
  <span className="endpoint-versions-label">Version:</span>
  <span data-version="v4" data-current>v4</span>
</div>


## OpenAPI

````yaml openapi-v2.json GET /core/v4/employees/{employeeId}/managers
openapi: 3.0.0
info:
  title: Sesame Public API v2
  description: >-
    Public API v2 — additive surface `/public/{context}/v{N}`,
    endpoint-versioned from v4
  version: 1.0.0
servers:
  - url: https://api.sesamehr.com
    description: Production
security:
  - Bearer: []
paths:
  /core/v4/employees/{employeeId}/managers:
    get:
      tags:
        - Employee Managers
      summary: List employee managers
      description: >-
        List an employee's managers (clocks/leaves validators), flagging
        automatic (generated on the fly) vs manual (explicitly assigned).
      operationId: ListEmployeeManagers
      parameters:
        - name: employeeId
          in: path
          description: Employee id.
          required: true
          schema:
            type: string
            format: uuid
        - name: permission
          in: query
          description: Validator type. Omitted = both types.
          required: false
          schema:
            type: string
            enum:
              - checksManageRequestsAndIncidences
              - absencesManagement
      responses:
        '200':
          description: >-
            The employee's managers. automatic=true items carry null
            id/createdAt/updatedAt (not persisted).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEmployeeManagersResponse'
        '401':
          description: Missing or invalid API key
        '403':
          description: API consumer lacks permission over the requested resource
        '422':
          description: Validation error
components:
  schemas:
    ListEmployeeManagersResponse:
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EmployeeManagerEntry'
      type: object
    EmployeeManagerEntry:
      properties:
        id:
          description: >-
            Assignment id. null when automatic (generated on the fly, not
            persisted).
          type: string
          format: uuid
          nullable: true
        manager:
          $ref: '#/components/schemas/EmployeeEntry'
        employee:
          $ref: '#/components/schemas/EmployeeEntry'
        permission:
          type: string
          enum:
            - checksManageRequestsAndIncidences
            - absencesManagement
        order:
          type: integer
        automatic:
          description: >-
            true = validator generated on the fly (no explicit manager
            assigned); false = explicitly assigned manager
          type: boolean
        createdAt:
          description: null when automatic
          type: string
          format: date-time
          nullable: true
        updatedAt:
          description: null when automatic
          type: string
          format: date-time
          nullable: true
      type: object
    EmployeeEntry:
      properties:
        id:
          type: string
          format: uuid
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
          nullable: true
      type: object
  securitySchemes:
    Bearer:
      type: http
      description: 'Sesame Public API consumer token (Authorization: Bearer <token>)'
      scheme: bearer

````