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

> ⚠ Irreversible. Soft-deletes each result (and its non-deleted runs) with the same side-effects as deleting a single result: outbound phone numbers are released when no queued runs remain, capacity-manager slots are freed, and active_sessions / pending_demand counters are decremented in aggregate. Maximum 100 result IDs per request. Results that are already deleted or that the caller cannot access are silently skipped — the response is 204 even when no results are deleted.



## OpenAPI

````yaml post /test_framework/v1/results/bulk_delete/
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/bulk_delete/:
    post:
      tags:
        - Results
      summary: Soft-delete multiple results
      description: >-
        ⚠ Irreversible. Soft-deletes each result (and its non-deleted runs) with
        the same side-effects as deleting a single result: outbound phone
        numbers are released when no queued runs remain, capacity-manager slots
        are freed, and active_sessions / pending_demand counters are decremented
        in aggregate. Maximum 100 result IDs per request. Results that are
        already deleted or that the caller cannot access are silently skipped —
        the response is 204 even when no results are deleted.
      operationId: bulk-delete-results_2
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkDeleteResults'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkDeleteResults'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkDeleteResults'
        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:
    SchemaPostBulkDeleteResults:
      type: object
      properties:
        result_ids:
          type: array
          items:
            type: integer
          description: List of result IDs to soft-delete. Maximum 100 per request.
          maxItems: 100
          minItems: 1
      required:
        - result_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.

````