For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voices
    • Overview
    • List Voices
    • Get Voice
    • Delete Voice
  • Recordings
    • Overview
    • List Recordings
    • Get Recording
    • Create Recording
    • Update Recording
    • Delete Recording
  • Projects & Clips
  • Voice Settings
    • Overview
    • List Presets
    • Get Preset
    • Create Preset
    • Update Preset
    • Delete Preset
  • Custom Pronunciations
    • Overview
    • Create Pronunciation
    • Bulk Create from ZIP
    • List Pronunciations
    • Get Pronunciation
    • Toggle Active Status
    • Delete Pronunciation
  • Account & Billing
    • Overview
    • Get Account
    • Teams
    • Billing Usage
Status
LogoLogo
Voice Settings

Update Voice Settings Preset

Was this page helpful?
Previous

Delete Voice Settings Preset

Next
Built with

PATCH https://app.resemble.ai/api/v2/voice_settings_presets/{uuid} or PUT https://app.resemble.ai/api/v2/voice_settings_presets/{uuid}

Update a voice settings preset.

ParameterTypeRequiredNotes
uuidstring✅Preset UUID (URL parameter).
FieldTypeRequiredNotes
namestring❌Preset name.
pacenumber❌Speech pace/speed.
temperaturenumber❌Voice temperature.
pitchnumber❌Voice pitch.
useHdboolean❌Use HD quality.
exaggerationnumber❌Exaggeration level.
descriptionstring❌Description or prompt.
$curl --request PATCH 'https://app.resemble.ai/api/v2/voice_settings_presets/PRESET_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "name": "Updated Name",
> "pace": 1.5
> }'
1{
2 "success": true,
3 "data": {
4 "uuid": "123e4567-e89b-12d3-a456-426614174000",
5 "name": "Updated Name",
6 "settings": {
7 "pace": 1.5,
8 "temperature": 1.1,
9 "pitch": 0.5,
10 "useHd": false,
11 "exaggeration": 0.7,
12 "description": "Updated description"
13 },
14 "is_public": false,
15 "created_at": "2024-01-01T00:00:00Z",
16 "updated_at": "2024-01-02T00:00:00Z"
17 },
18 "message": "Preset updated successfully"
19}

Can only update your own presets. Settings are merged with existing values.