> ## 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.

# Send evaluation response to a participant



## OpenAPI

````yaml /api-reference/pessoas.yaml post /v2/performance-evaluations/{id}/answer
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/{id}/answer:
    post:
      tags:
        - Performance Evaluations
      summary: Send evaluation response to a participant
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: integer
        - name: participantId
          in: query
          required: false
          schema:
            type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                competenceAnswers:
                  type: array
                  items:
                    type: object
                    properties:
                      competence_id:
                        type: integer
                      score:
                        type: integer
                        minimum: 1
                        maximum: 5
                      comment:
                        type: string
                generalComment:
                  type: string
      responses:
        '200':
          description: Resposta enviada com sucesso
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````