POST
/
v1
/
pronunciation-dictionaries
/
{pronunciation_dictionary_id}
/
remove-rules
from elevenlabs import ElevenLabs

client = ElevenLabs(
    api_key="YOUR_API_KEY",
)
client.pronunciation_dictionary.remove_rules(
    pronunciation_dictionary_id="21m00Tcm4TlvDq8ikWAM",
    rule_strings=["rule_strings"],
)
{
  "id": "<string>",
  "version_id": "<string>"
}

Headers

xi-api-key
string

Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Path Parameters

pronunciation_dictionary_id
string
required

The id of the pronunciation dictionary

Body

application/json
rule_strings
string[]
required

List of strings to remove from the pronunciation dictionary.

Response

200
application/json
Successful Response
id
string
required
version_id
string
required