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

# Create a performance evaluation



## OpenAPI

````yaml /api-reference/pessoas.yaml post /v2/performance-evaluations
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — task management, culture and performance platform.


    Endpoints are versioned at `/v2/...`. Authentication via Bearer JWT in the
    `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
    url: https://tarefy.com
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Performance Evaluations
    description: Performance evaluations (90°, 180°, 360°)
  - name: Feedback
    description: Structured feedbacks
  - name: PDI
    description: Individual Development Plan
  - name: Competences
    description: Competency catalog
  - name: Competence Groups
    description: Competency grouping
  - name: NPS
    description: Internal Net Promoter Score
paths:
  /v2/performance-evaluations:
    post:
      tags:
        - Performance Evaluations
      summary: Create a performance evaluation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                startDate:
                  type: string
                  format: date
                endDate:
                  type: string
                  format: date
                scaleLevels:
                  type: integer
                  enum:
                    - 4
                    - 5
                scaleLabel:
                  type: string
                showCommentsPerCompetence:
                  type: boolean
                requireCommentsPerCompetence:
                  type: boolean
                requireGeneralComments:
                  type: boolean
                evaluationType:
                  type: string
                  enum:
                    - direct
                    - joint
                    - '360'
                    - custom
                selfEvaluation:
                  type: boolean
                admissionDate:
                  type: string
                  format: date
                employmentTypes:
                  type: array
                  items:
                    type: string
                considerSelfEvaluationInAverage:
                  type: boolean
                participants:
                  type: array
                  items:
                    type: object
      responses:
        '200':
          description: Avaliação criada com sucesso
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````