> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Voice

> Update a custom voice's metadata

## Request

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the voice
</ParamField>

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

<ParamField header="Content-Type" type="string" required>
  application/json
</ParamField>

### Body

<ParamField body="name" type="string">
  Updated voice name
</ParamField>

<ParamField body="description" type="string">
  Updated description
</ParamField>

<Note>
  Only custom voices can be updated. System voices cannot be modified.
</Note>

## Response

<ResponseField name="id" type="string">
  Voice identifier
</ResponseField>

<ResponseField name="name" type="string">
  Updated voice name
</ResponseField>

<ResponseField name="description" type="string">
  Updated description
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X PUT https://api.60db.ai/voices/voice-custom-123 \
    -H "Authorization: Bearer your-api-key" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Updated Voice Name",
      "description": "Updated description"
    }'
  ```

  ```javascript JavaScript theme={null}
  await client.updateVoice("voice-custom-123", {
    name: "Updated Voice Name",
    description: "Updated description",
  });
  ```

  ```python Python theme={null}
  client.update_voice(
      voice_id='voice-custom-123',
      name='Updated Voice Name',
      description='Updated description'
  )
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "voice-custom-123",
    "name": "Updated Voice Name",
    "description": "Updated description",
    "updated_at": "2026-01-29T11:35:00Z"
  }
  ```
</ResponseExample>
