DashboardAPI DocsChangelogSystem StatusMy Account
DashboardAPI DocsChangelogSystem StatusMy Account
  1. Voice Cloning API
  • Introduction
  • Voice Library
  • API Authentication
  • Text to Speech API
    • WebSocket
    • Generate TTS
      POST
    • List Voices
      POST
  • VoxFX Effects API
    • Generate TTS with VoxFX
      POST
    • List VoxFX Effects
      GET
  • Voice Cloning API
    • Create Voice Clone
      POST
    • List Voice Clones
      GET
    • Get Single Voice
      GET
    • Edit Voice Clone
      PUT
    • Delete Voice Clone
      DELETE
  1. Voice Cloning API

Edit Voice Clone

PUT
https://developer.voicemaker.in/api/v1/voice-clones/{VoiceId}
Edit an existing voice clone from your account.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Body Params multipart/form-dataRequired

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://developer.voicemaker.in/api/v1/voice-clones/' \
--header 'Authorization: Bearer <token>' \
--form 'name=""' \
--form 'description=""' \
--form 'labels=""'
Response Response Example
{
    "status": "success",
    "message": "Voice clone updated successfully.",
    "data": {
        "VoiceId": "voice_12345",
        "name": "Updated Voice Name",
        "description": "Updated description",
        "labels": {
            "category": "Updated Category",
            "accent": "Updated Accent"
        }
    }
}
Modified at 2025-11-22 07:54:38
Previous
Get Single Voice
Next
Delete Voice Clone
Built with