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
Recordings

Update Recording

Was this page helpful?
Previous

Delete Recording

Next
Built with

PATCH https://app.resemble.ai/api/v2/voices/{voice_uuid}/recordings/{uuid} or PUT https://app.resemble.ai/api/v2/voices/{voice_uuid}/recordings/{uuid}

Update recording metadata.

ParameterTypeRequiredNotes
voice_uuidstring✅Voice UUID (URL parameter).
uuidstring✅Recording UUID (URL parameter).
FieldTypeRequiredNotes
namestring❌Recording name (max 256 characters).
textstring❌Transcript (max 1024 characters).
emotionstring❌Emotion label (max 64 characters).
is_activeboolean❌Whether recording is active for training.
fillboolean❌Whether to use for fill/speech-to-speech.
$curl --request PATCH 'https://app.resemble.ai/api/v2/voices/VOICE_UUID/recordings/RECORDING_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "emotion": "excited",
> "is_active": true,
> "name": "launch_intro",
> "text": "This is our big announcement!"
> }'
1{
2 "success": true,
3 "item": {
4 "uuid": "RECORDING_UUID",
5 "name": "launch_intro",
6 "text": "This is our big announcement!",
7 "emotion": "excited",
8 "fill": false,
9 "is_active": true,
10 "audio_src": "https://...",
11 "created_at": "2024-01-15T10:30:00Z",
12 "updated_at": "2024-01-15T11:10:00Z"
13 }
14}

Cannot activate recordings marked as outliers.