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

# Delete speaker verification evidence

> Deletes a speaker verification evidence



## OpenAPI

````yaml delete /organization/voices/{voice_id}/speaker_verification/evidences/{id}
openapi: 3.0.1
info:
  title: BeyondWords REST API
  description: |-
    This is the documentation for the BeyondWords REST API.
              You can use this API to use BeyondWords programmatically.
              You can get your API Key and Project ID for each project in the Project settings tab in the BeyondWords
              <a href="https://dash.beyondwords.io/dashboard">dashboard</a>.
  version: 1.0.0
servers:
  - url: https://api.beyondwords.io/v1
security: []
paths:
  /organization/voices/{voice_id}/speaker_verification/evidences/{id}:
    parameters:
      - name: voice_id
        in: path
        required: true
        description: Voice ID
        schema:
          type: string
      - name: id
        in: path
        required: true
        description: Evidence ID
        schema:
          type: string
    delete:
      tags:
        - Speaker Verification Evidences
      summary: Destroy
      description: Deletes a speaker verification evidence
      operationId: organization/voices/speaker_verification/evidences#destroy
      responses:
        '204':
          description: No content
        '401':
          description: Invalid authentication token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
      security:
        - apiKey: []
components:
  schemas:
    errorModel:
      type: object
      properties:
        code:
          type: integer
          description: Error code
        message:
          type: string
          description: Error message
        errors:
          type: array
          nullable: true
          items:
            type: object
            properties:
              location:
                type: string
              message:
                type: string
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````