---
title: "Update a voice prompt"
method: PUT
path: "/voice"
tags: ["Voice"]
---

# Update a voice prompt

`PUT /voice`

Update metadata for an existing voice prompt. Only non-empty fields are updated — omit fields you don't want to change.

## Headers

- `x-api-key` string, required

## Request body

- ModelVoiceBankAPIUpdateRequest — Request to update a voice prompt's metadata
  - `id` string, required — Unique identifier for the voice prompt to update
  - `name` string — New display name for the voice prompt
  - `locale` string — Language locale code
  - `gender` 'MALE' | 'FEMALE' | 'NON_BINARY' — Gender of the speaker
  - `age` integer — Age of the speaker

## Response `200`

Voice prompt updated successfully

- object
  - `prompt` ModelVoicePrompt — A voice prompt representing a cloned or uploaded voice
    - `id` string — Unique identifier for the voice prompt
    - `title` string — Title of the voice prompt
    - `name` string — Display name of the voice prompt
    - `locale` string — Locale of the voice prompt
    - `text` string — Transcript text associated with the voice prompt
    - `createdAt` string, date-time — Timestamp when the voice prompt was created
    - `speakerId` string — Unique identifier for the speaker
    - `gender` 'MALE' | 'FEMALE' | 'NON_BINARY' — Gender of the voice
    - `speakingStyle` string — Speaking style of the voice

## Other responses

- `400` — Bad request
- `401` — Unauthorized — invalid or missing API key
- `500` — Internal server error

---

[API](https://skmtc.net/deepdub-ai/apis/deepdub-api.md) · [All operations](https://skmtc.net/deepdub-ai/apis/deepdub-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/deepdub-ai/deepdub-api/versions/f9c545698573/schema)
