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

# Update cloned voice

> Updates the metadata of an existing cloned voice without changing the underlying voice model.
Only provided fields are updated while others remain unchanged.

## Updatable Fields

* **Name**: Voice identifier for display
* **Description**: Voice characteristics and usage notes
* **Language**: Primary language setting
* **Labels**: Custom metadata tags

<Note>The actual voice model and audio characteristics cannot be changed. Only metadata can be updated.</Note>


## OpenAPI

````yaml https://blackbox.dasha.ai/swagger/v1/swagger.json patch /api/v1/voice/clone/{voiceId}
openapi: 3.0.4
info:
  title: Dasha BlackBox Agent API
  description: API for managing AI agents and calls
  contact:
    name: DashaAI Team
    email: support@dasha.ai
  version: v1
servers:
  - url: https://blackbox.dasha.ai
    description: Dasha BlackBox Agent API
security:
  - ApiKey: []
  - OAuth: []
tags:
  - name: ActivityLogs
  - name: Agents
  - name: AgentTestCases
  - name: CallResults
  - name: Calls
  - name: Chats
  - name: Copilot
  - name: CustomerData
  - name: Mcp
  - name: Media
  - name: Misc
  - name: PronunciationDictionaries
  - name: Providers
  - name: SipAliases
  - name: SipCredentials
  - name: SipPhoneNumbers
  - name: TextChat
  - name: TwilioProvider
  - name: Voice
  - name: WebhookTest
  - name: WebIntegrations
  - name: WebSocket
    description: WebSocket endpoints for real-time communication
paths:
  /api/v1/voice/clone/{voiceId}:
    patch:
      tags:
        - Voice
      summary: Update cloned voice
      description: >-
        Updates the metadata of an existing cloned voice without changing the
        underlying voice model.

        Only provided fields are updated while others remain unchanged.
      parameters:
        - name: voiceId
          in: path
          description: Voice identifier
          required: true
          schema:
            type: string
      requestBody:
        description: Fields to update
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/ClonePatchDto'
              description: Partial update request for voice metadata
          text/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/ClonePatchDto'
              description: Partial update request for voice metadata
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/ClonePatchDto'
              description: Partial update request for voice metadata
      responses:
        '200':
          description: Cloned voice updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TtsCloneResponseDto'
        '400':
          description: Invalid configuration or validation errors
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Authentication failed or API key is missing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Access denied to voice resources
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Voice with specified ID does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '422':
          description: Invalid language code or field values
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Server error occurred during voice update
components:
  schemas:
    ClonePatchDto:
      type: object
      properties:
        name:
          maxLength: 100
          minLength: 1
          type: string
          description: Updated display name for the voice
          nullable: true
        description:
          maxLength: 1000
          minLength: 1
          type: string
          description: Updated description of voice characteristics and intended use
          nullable: true
        language:
          type: string
          description: Updated primary language for the voice model
          nullable: true
        labels:
          type: object
          additionalProperties:
            type: string
          description: >-
            Updated custom metadata labels for categorizing and organizing
            voices
          nullable: true
      additionalProperties: false
      description: Partial update request for voice metadata
    TtsCloneResponseDto:
      required:
        - category
        - id
        - provider
      type: object
      properties:
        id:
          minLength: 1
          type: string
          description: Unique identifier for the voice
        name:
          type: string
          description: Display name of the voice
          nullable: true
        voiceId:
          type: string
          description: Voice ID used for synthesis
          nullable: true
        provider:
          minLength: 1
          type: string
          description: >-
            TTS provider used for this voice. Supported providers: ElevenLabs,
            Cartesia, Lmnt.
        description:
          type: string
          description: Description of voice characteristics
          nullable: true
        language:
          type: string
          description: Primary language for the voice
          nullable: true
        labels:
          type: object
          additionalProperties:
            type: string
          description: Custom metadata labels
          nullable: true
        previewUrl:
          type: string
          description: URL for voice preview audio
          nullable: true
        category:
          allOf:
            - $ref: '#/components/schemas/TtsVoiceCategory'
          description: >-
            Voice category. Public voices are provided by the TTS provider,
            Cloned voices are custom voices created through voice cloning.
        createdTime:
          type: string
          description: Timestamp when voice was created
          format: date-time
          nullable: true
        lastUpdatedTime:
          type: string
          description: Timestamp when voice was last updated
          format: date-time
          nullable: true
      additionalProperties: false
      description: Response DTO for TTS voice cloning operations
    ProblemDetails:
      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
      additionalProperties: {}
    TtsVoiceCategory:
      enum:
        - Public
        - Cloned
      type: string
      description: Voice category classification
  securitySchemes:
    ApiKey:
      type: http
      description: API Key Authentication (Bearer {key})
      scheme: Bearer
    OAuth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://auth.dasha.ai/connect/authorize
          scopes:
            platform_api: Platform API

````