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

# Process Feedbacks Answer

> Answer the questions a running metric optimization is paused on. Answers are keyed by question id; use {"action": "skip"} to skip one.



## OpenAPI

````yaml post /test_framework/metric-reviews/process_feedbacks_answer/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /test_framework/metric-reviews/process_feedbacks_answer/:
    post:
      tags:
        - test_framework
      description: >-
        Answer the questions a running metric optimization is paused on. Answers
        are keyed by question id; use {"action": "skip"} to skip one.
      operationId: metric-reviews-process-feedbacks-answer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MetricReviewInline'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/MetricReviewInline'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/MetricReviewInline'
        required: true
      responses:
        '200':
          description: Answers recorded; the paused optimization resumes
      security:
        - api_key: []
components:
  schemas:
    MetricReviewInline:
      type: object
      properties:
        id:
          type: integer
        metric:
          type: integer
          readOnly: true
        metric_name:
          type: string
          readOnly: true
        metric_enum_values:
          readOnly: true
        eval_type:
          type: string
          readOnly: true
        expected_value:
          oneOf:
            - {}
            - type: 'null'
          description: |

            Metric expected value
            Example:
            - `5` or `0`
            - `one`, `two` or `three` [ enum type ]
        explanation:
          readOnly: true
          description: >

            Metric explanation

            Example:

            ```json

            ["Agent failed to follow the opening script", "Missed key product
            information"]

            ```
        feedback:
          type: string
          description: |

            Metric feedback
            Example:
            - `"Great Call"`
        metric_function_name:
          type: string
          readOnly: true
        metric_vocera_defined_metric_code:
          type: string
          readOnly: true
      required:
        - id
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````