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

> Terminates all active calls associated with the runs in this result. This will end all ongoing phone calls or chat sessions for all non-deleted runs.

# End all calls in result



## OpenAPI

````yaml post /test_framework/v1/results/{id}/end_calls/
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}/end_calls/:
    post:
      tags:
        - Results
      summary: End all calls in result
      description: >-
        Terminates ALL active phone calls / chat sessions across every
        non-deleted run in this result. Bulk operation — there is no per-call
        confirmation or dry-run.
      operationId: end-calls_2
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this result.
          required: true
      responses:
        '200':
          description: No response body
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
          description: ''
      security:
        - api_key: []
components:
  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.

````