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

> Soft deletes specified runs from a result by marking them as deleted and triggers result re-evaluation.

# Delete runs from result



## OpenAPI

````yaml post /test_framework/v1/results/{id}/delete_runs/
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/v1/results/{id}/delete_runs/:
    post:
      tags:
        - Results
      summary: Delete runs from result
      description: >-
        ⚠ Irreversible. Removes the specified runs from a result, then triggers
        re-evaluation so aggregate metrics recompute without them. Maximum 100
        run IDs per request.
      operationId: delete-runs_2
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this result.
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SchemaPostDeleteRuns'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SchemaPostDeleteRuns'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SchemaPostDeleteRuns'
        required: true
      responses:
        '204':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  field_name:
                    type: array
                    items:
                      type: string
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
          description: ''
      security:
        - api_key: []
components:
  schemas:
    SchemaPostDeleteRuns:
      type: object
      properties:
        run_ids:
          type: array
          items:
            type: integer
          description: List of run IDs to delete
      required:
        - run_ids
  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.

````