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

# Bulk Delete Evaluators

> Bulk-delete multiple evaluators (test scenarios) in a single call. Cannot be undone from the UI — confirm the exact list with the user before calling.



## OpenAPI

````yaml post /test_framework/v1/scenarios/delete_scenarios/
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/scenarios/delete_scenarios/:
    post:
      tags:
        - Evaluators
      summary: Bulk delete evaluators
      description: >-
        ⚠ Cannot be undone from the UI. Bulk-deletes the listed evaluators —
        they disappear from `scenarios_list` and from any future evaluator runs.


        **Always confirm the exact list of `scenarios` IDs with the user before
        calling.** For deleting a single evaluator prefer `scenarios_destroy`.


        **Required:** `scenarios` (list of evaluator IDs). One of `agent_id` or
        `project_id` is also required to scope the permission check.
      operationId: scenarios-bulk-delete_2
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScenariosBulkDeleteRequest'
            examples:
              BulkDeleteByAgent:
                value:
                  agent_id: 12
                  scenarios:
                    - 101
                    - 102
                    - 103
                summary: Bulk delete by agent
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ScenariosBulkDeleteRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ScenariosBulkDeleteRequest'
        required: true
      responses:
        '204':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  field_name:
                    type: array
                    items:
                      type: string
          description: ''
      security:
        - api_key: []
components:
  schemas:
    ScenariosBulkDeleteRequest:
      type: object
      properties:
        scenarios:
          type: array
          items:
            type: integer
          description: List of evaluator (scenario) IDs to soft-delete.
        agent_id:
          type: integer
          description: >-
            Scope the permission check to a specific agent. Either this or
            project_id is required.
        project_id:
          type: integer
          description: >-
            Scope the permission check to a specific project. Either this or
            agent_id is required.
      required:
        - scenarios
  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.

````