---
title: "Record feedback after an evaluation"
url: "https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765/operations/createFeedback"
---

> Full API specification: https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765.md

# Record feedback after an evaluation

`POST` `/sessions/{sessionId}/feedback`

Operation ID: `createFeedback`

The basis for reporting back to the agent's owning team.

## Path parameters

- `sessionId` (string, required)

## Request body (required)

Content types: `application/json`

## Responses

- `201` - Recorded

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Evaluation Sessions
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
paths:
  /sessions/{sessionId}/feedback:
    parameters:
      - name: sessionId
        in: path
        required: true
        schema:
          type: string
          example: sess_9a44
    post:
      tags:
        - Feedback
      summary: Record feedback after an evaluation
      description: The basis for reporting back to the agent's owning team.
      operationId: createFeedback
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - requester_id
                - adoption_likelihood
              properties:
                requester_id:
                  type: string
                  example: req_71ab
                adoption_likelihood:
                  type: string
                  enum:
                    - intent_to_adopt
                    - still_evaluating
                    - not_adopting
                cost_assessment:
                  type: string
                  enum:
                    - fair
                    - too_high
                    - too_low
                comment:
                  type: string
                  maxLength: 1000
      responses:
        "201":
          description: Recorded
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Feedback"
security:
  - apiKey: []
components:
  schemas:
    Feedback:
      type: object
      properties:
        id:
          type: string
          example: fb_60d2
        session_id:
          type: string
          example: sess_9a44
        requester_id:
          type: string
          example: req_71ab
        adoption_likelihood:
          type: string
          example: still_evaluating
        cost_assessment:
          type: string
          example: too_high
        comment:
          type: string
          example: Works well for triage, but the per-request cost is above what we
            budgeted.
        created_at:
          type: string
          format: date-time
          example: 2026-09-03T17:12:00Z
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Nexora AI portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
