## Delete `voices.delete(strid) -> VoiceDeleteResponse` **delete** `/voices/{id}` Delete a cloned voice. Only cloned voices can be deleted. Returns 409 if the voice is in use by an assistant. ### Parameters - `id: str` ### Returns - `class VoiceDeleteResponse: …` - `success: bool` ### Example ```python import os from revox import Revox client = Revox( api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted ) voice = client.voices.delete( "id", ) print(voice.success) ```