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

# Delete Calls

> Deletes one or more calls



## OpenAPI

````yaml delete /v1/Call
openapi: 3.0.1
info:
  title: NLPearl Client API
  description: A sample API that demonstrates features in the OpenAPI specification
  version: v1
servers:
  - url: https://api.nlpearl.ai
    description: Production Environement
security:
  - bearer_auth: []
paths:
  /v1/Call:
    delete:
      tags:
        - Call
      summary: Delete Calls
      description: Deletes one or more calls
      requestBody:
        description: The request object containing the list of call IDs to be deleted.
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/DeleteCallsRequestApi'
              description: Represents the request object used to delete one or more calls.
          text/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/DeleteCallsRequestApi'
              description: Represents the request object used to delete one or more calls.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/DeleteCallsRequestApi'
              description: Represents the request object used to delete one or more calls.
      responses:
        '200':
          description: Returns a boolean indicating if the deletion was successful.
          content:
            text/plain:
              schema:
                type: boolean
            application/json:
              schema:
                type: boolean
            text/json:
              schema:
                type: boolean
        '400':
          description: Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ValidationProblemDetails'
components:
  schemas:
    DeleteCallsRequestApi:
      type: object
      properties:
        callIds:
          type: array
          items:
            type: string
          description: The list of unique call IDs to delete.
          nullable: true
      additionalProperties: false
      description: Represents the request object used to delete one or more calls.
    ValidationProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          nullable: true
      additionalProperties: {}
  securitySchemes:
    bearer_auth:
      type: http
      description: >-
        Specify the authorization token.


        For more information, check out the [Authorization
        Guide](/api-reference/authorization).
      scheme: bearer

````